I use RabbitMQ to send messages to interested parties on topics. Each subscriber has a queue, and I tie the queue to those that they are interested in. I would like to allow the user to remove an item from my topic list.
In my installation, this will require “detaching” the associated section from this user queue.
I am using pyamqplib and I see no way to do this through a channel object. Their way to remove previously associated routing keys from the queue?
source
share