Description
We are using CamelJMS to connect with IBM MQ. We are doing request-reply over JMS. It was identified that our camel app is continuously polling the reply queues even when a unit of work was completed. I found that QueueReplyManager is coupled with DefaultMessageListenerContainer.
CamelJMS allows consumerType for JMS consumer to be Simple/Default/Custom. Why was it decided to use DefaultMessageListenerContainer for QueueReplyManager? Can we give a consumerType choice for this pattern too ?