RE: Using same queue multiple times in a circuit

2018-09-23 Thread Damien Nicolas
septembre 2018 14:56 À : users@camel.apache.org Objet :Re: Using same queue multiple times in a circuit Hi Damien, from("jms:queue:queue1") reads messages once at a time. Using from("jms:queue:q1?concurrentConsumers=2") may help but imply consequences in terms of resourc

Re: Using same queue multiple times in a circuit

2018-09-23 Thread Alex Dettinger
Hi Damien, from("jms:queue:queue1") reads messages once at a time. Using from("jms:queue:q1?concurrentConsumers=2") may help but imply consequences in terms of resources, thread safety, readability... In such a situation, I would avoid reusing q1 if possible. For instance, you may be able to