I have a route where I want to asynchronously send to some endpoint. That is,
I want the route to send the message and then finish without waiting for the
endpoint's route to process.
How can I do that?
Regards,
Ittay
--
View this message in context:
http://camel.465427.n5.nabble.com/how-can-
Hi,
How would sending to an amqp endpoint and receiving acresult look like?
Can it be done with InOut? How would the route look like at the receiving
end?
would love a code example, if possible using ProducerTemplate
Regards
Ittay
(Sent from my android)
Hi,
I have the need to create a route so that the processor that the
consumer holds runs 2 steps and then returns while the rest of the route
continues.
So, if the route is s1, s2, s3, s4, then:
consumer.getProcessor().process(exchange) will return with the result of
s2 while s3 and s4 run