Re: Order of message consumption across destinations

2007-03-19 Thread James Strachan
BTW we support optional total ordering to ensure that all consumers on a topic see the same order (which is slower as we have to synchronize the processing of the processors in the broker) On 3/19/07, James Strachan <[EMAIL PROTECTED]> wrote: ActiveMQ supports ordering of a single producers mess

Re: Order of message consumption across destinations

2007-03-19 Thread James Strachan
ActiveMQ supports ordering of a single producers messages; so the only way to get things to arrive out of order is to have multipe producers and get the messages to interleaved. i.e. so for producers M and N, one consumer might see M1, M2, N1, N2 the other might see M1, N1, M2, N2 etc On 3/19/0