In my client application, I create several consumers, but they can\'t concurrently process the queue. Always, only a single consumer processes the queue messages. I don\'t k
Think of it as 1 to 1 between threads and sessions. (Connections are thread safe, everything "below" is not). So in short, create multiple threads, have each thread create a session etc. And each thread will consume.