Can I send and receive messages concurrently on one JMS Connection

 FAQ > JMS > Can I send and receive messages concurrently on one JMS Connection

Absolutely!

Strictly speaking each producer being used concurrently should be using a separate session (though in ActiveMQ Classic it’ll probably work fine if you just use one session for all publishers).

For concurrent consumption create a session per consumer - as all messages are dispatched to a session in a single thread - but you can have as many sessions as you like per connection.

To further help with concurrent consuming of JMS you can use Message Driven POJOs

Apache, ActiveMQ, Apache ActiveMQ, the Apache feather logo, and the Apache ActiveMQ project logo are trademarks of The Apache Software Foundation. Copyright © 2024, The Apache Software Foundation. Licensed under Apache License 2.0.