I was recently asked by a partner the pros/cons of using a single message consumer to receives messages from multiple topics vs. multiple consumers each receiving messages from different topics?
...
@Autowired
ConnectionFactory connectionFactory;
@Autowired
SingleListener singleListener;
...
MessageListenerAdapter adapter_1 = new MessageListenerAdapter(singleListener);
DefaultMessageListenerContainer container_1 = new DefaultMessageListenerContainer();
container_1.setConnectionFactory(connectionFactory);
container_1.setDestination(new ActiveMQTopic("topic_1");
container_1.setMessageListener(adapter_1);
MessageListenerAdapter adapter_2 = new MessageListenerAdapter(singleListener);
DefaultMessageListenerContainer container_2 = new DefaultMessageListenerContainer();
container.setConnectionFactory(connectionFactory);
container.setDestination(new ActiveMQTopic("topic_2");
container.setMessageListener(adapter_2);
Notice that the MessageListenerAdapter uses the same listener. The listener would receive the message, check the destination, and delegate to an appropriate business class.
Would having this configuration be any different than having two consumers one for topic_1 and one for topic_2? I was unable to find any functional pros/cons between having one or the other.