CamelDestination
to use the CamelContext
to perform smart routing etcCamelContext
with ActiveMQ Queue endpointsMessageConsumer
which consumes message exchanges from
a Camel Endpoint
MessageProducer
which sends message exchanges to a
Camel Endpoint
Queue
object which refers to a Camel endpointQueueReceiver
which consumes message exchanges from a
Camel Endpoint
QueueSender
which sends message exchanges to a Camel
Endpoint
Topic
object which refers to a Camel endpointTopicPublisher
which sends message exchanges to a
Camel Endpoint
TopicSubscriber
which consumes message exchanges from a
Camel Endpoint
NoLocal
attribute for this subscriber.Queue
associated with this queue receiver.QueueSender
.TopicPublisher
.Topic
associated with this subscriber.JmsTemplate
which will create a new connection, session, producer
for each message then close them all down again.SingleConnectionFactory
will be used so that when
messages are sent to ActiveMQ from outside of a message consuming thread, pooling will be used rather
than the default with the Spring JmsTemplate
which will create a new connection, session, producer
for each message then close them all down again.MessageListener
to be converted to a Camel Processor
so that we can provide better
Bean Integration so that we can use any JMS MessageListener in
in Camel as a beanApache Camel