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
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