Maybe I am asking the wrong question here.
what I'm trying to do: multiple producers push data in dynamic categories into a Named exchange. multiple consumers need to pick up this data from these dynamically named queues and act on them.
the problem is that all of the examples of consumption that I see require the consumer/subscription to have a specific queue name, and my consumers dont know the names of the queues, nor do they need to know this.
why am I doing this? two reasons:
I can have N of these dynamic categories at a time. I'd like the queue to serve these categories equally. currently we have one queue (msmq) which accepts all of these categories and serves them in FIFO (which means that some categories are starved for some time).
Being able to serve all categories equally, rather than fifo, lets me come up with interesting QoS (by default I understand that Rabbit will round-robin serve messages).
so, back to my question (if its valid): is it possible to consume messages from a queue?