Hi, Why do you need the queue to be exclusive? Perhaps you want exclusive consumers? http://www.rabbitmq.com/amqp-0-9-1-reference.html#basic.consume.exclusive
Regards, Alvaro On Mon, Mar 31, 2014 at 4:49 PM, Brian Reischl <[email protected]> wrote: > I'm looking at using queues with the exclusive option for distributing > configuration updates in my application. However, I'm worried that using the > exclusive option makes the queue unreliable in the event of transient > network problems. My thinking is that if the connection drops, then the > queue is deleted along with any messages in it. My consumer will also be > disconnected for some period of time while it reconnects and declares a new > queue & bindings, during which time any new messages will not be delivered. > Is that correct? If so, it seems like exclusive queues should not be used > for messages you don't want to lose? > > _______________________________________________ > rabbitmq-discuss mailing list > [email protected] > https://lists.rabbitmq.com/cgi-bin/mailman/listinfo/rabbitmq-discuss > -- You received this message because you are subscribed to the Google Groups "rabbitmq-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/rabbitmq-discuss. For more options, visit https://groups.google.com/d/optout.
