I have two systems that communicate VIA MQSeries .
The system1 send events to System2 over MQ .
We are running into a full clusterized environment so the listener deployed in system2 is "Multiple".
The order of events is very important :
if we have a serie : (event1 , event2 , event3) sent by the system1 , system 2 must process them in the same order otherwise the data is compromised .
How to guarantee with MQSeries that the concurrent consumers listening into the same queue can respect the order of events .
Thanks in advance