This content has been marked as final.
Show 2 replies
-
1. Re: Camel and AMQ async delivering
davsclaus Dec 12, 2011 7:55 AM (in response to fil78)You can use concurrentConsumers option on the endpoint. Then there will be multiple concurrent threads which will consume message, and process the messages in parallel.
from("activemq:queue:" + queue + "?concurrentConsumers=10")
-
2. Re: Camel and AMQ async delivering
fil78 Dec 12, 2011 10:29 AM (in response to davsclaus)Thanks a lot for your quick and helpful response.