blob: 5e4a60f54344f1161f72ffa4a164676b3b6b97f0 [file] [log] [blame]
<div class="wiki-content maincontent"><p>Absolutely! </p>
<p>Strictly speaking each producer being used concurrently should be using a separate session (though in ActiveMQ it'll probably work fine if you just use one session for all publishers). </p>
<p>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.</p>
<p>To further help with concurrent consuming of JMS you can use <a shape="rect" href="http://jencks.codehaus.org/Message+Driven+POJOs">Message Driven POJOs</a></p></div>