Parallel processing of JMS messages

jbossjms

Is it possible to create a pool of Message Listeners or a Message Driven Beans to process messages from a JMS queue or topic in parallel ?

I am using JBoss and JBoss's JMS

Best Answer

Yes, if the MDB pool size is greater than one, JBoss should create multiple MDBs to process the messages in parallel.

Related Topic