GitHub user daknin opened a pull request:
https://github.com/apache/camel/pull/2403
Add support for Rabbitmq exclusive consumer
Rabbit MQ supports exclusive queues and exclusive consumers. The existing
Camel `exclusive` parameter creates an exclusive queue that is non durable and
is deleted when the connection is closed. This PR adds an `exclusiveConsumer`
parameter that creates an exclusive consumer that requests exclusive access to
a shared durable queue that is not deleted when the connection is closed.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/daknin/camel feature/RabbitExclusiveConsumer
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/camel/pull/2403.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #2403
----
commit 4e3cf3924241e0b6379b255a752b1092e2f1ae12
Author: Darrell King <kingdarrella@...>
Date: 2018-07-01T07:58:15Z
Added support for Rabbitmq exclusive consumer
----
---