If I have a stateless message consumer, which is waiting for several asynchronous messages to come, how can I make sure that I have received all the messages, before I start working with the data that I get from them? In other words, I would either need something like an intermediary state storage, which is bound to a particular session, or something like waitForAll()
.
What does ActiveMQ provide in that direction?