[rabbitmq-discuss] client in browse mode in Rabbit
Marek Majkowski
majek04 at gmail.com
Wed Apr 25 16:38:39 BST 2012
On Wed, Apr 25, 2012 at 16:30, <m.luchak at smartasking.com> wrote:
> In browse mode on Qpid you can have multiple receivers connected to the same
> Q and these receivers will receive all of the messages (not round robin or
> exclusive)..
This is not really supported by AMQP model, so it's unlikely to be
supported by Rabbit.
In AMQP if you wish to distribute a message multiple receivers you need to
have a separate queue per consumer. The simplest way of doing that
is to bind multiple queues to a single fanout exchange. And have
one consumer per queue.
If you need more sophisticated topology you may use RabbitMQ-specific
exchange-to-exchange bindings:
http://www.rabbitmq.com/extensions.html
Cheers,
Marek
More information about the rabbitmq-discuss
mailing list