Two queues are bound to a topic exchange with the following routing keys:
Queue A, bound with routing key pattern match *.foo
Queue B, bound with routing key pattern match *.bar
I'd like to add a third queue to this exchange that receives messages that are neither foo
messages nor bar
messages. If I bind this queue with a #
routing key, I naturally get all messages I need, but including foo
's and bar
's which I don't want.
Any way to route messages patching a pattern NOT *.foo
AND NOT *.bar
?