Hi, No, you need not: http://camel.apache.org/competing-consumers.html
In Java DSL something like
from("jms:MyQueue?concurrentConsumers=5").bean(SomeBean.class);
Claus
On 15.11.2010 15:34, Krystian wrote:
Hi, I've created a POJO with @Consume and it works great. However I have to be able to have more than one consumer listening on the queue. How can I get more of them? I can only hope it does not mean I will have to create 20<bean/> entries for 20 concurrent consumers ;) Thanks, Krystian
