You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Durable Subscriber

Camel supports the Durable Subscriber from the EIP patterns using the JMS component which supports publish & subscribe using Topics with support for non-durable and durable subscribers.

Another alternative is to combine the Message Dispatcher or Content Based Router with File or JPA components for durable subscribers then something like Seda for non-durable.

Here is a simple example of creating a durable subscriber to a JMS topic

Using the Fluent Builders

from("activemq:topic:foo?clientId=123&durableSubscriptionName=bar")
.to("mock:result");

Using the Spring XML Extensions

<route>
    <from uri="activemq:topic:foo?clientId=123&durableSubscriptionName=bar"/>
    <to uri="mock:result"/>
</route>

See Also

Using This Pattern

If you would like to use this EIP Pattern then please read the Getting Started, you may also find the Architecture useful particularly the description of Endpoint and URIs. Then you could try out some of the Examples first before trying this pattern out.

  • No labels