We\'ve got an application which will be using RabbitMQ and have several different queues for passing messages between tiers.
Initially, I was planning to use multiple di
Direct exchange also supports multiple routes (https://www.rabbitmq.com/tutorials/amqp-concepts.html#exchange-direct) , so why don't you use something like this:
ExchangeA (type: direct) -QueueA -RoutingA ExchangeB (type: direct) -QueueB -RoutingB ExchangeC (type: direct) -QueueC -RoutingC