Message Queue with 'Message Barrier' Feature?

Posted by Lajos Nagy on Stack Overflow See other posts from Stack Overflow or by Lajos Nagy
Published on 2010-03-07T20:42:25Z Indexed on 2010/03/13 18:25 UTC
Read the original article Hit count: 329

Filed under:
|

Is there a message queue implementation that allows breaking up work into 'batches' by inserting 'message barriers' into the message stream? Let me clarify. No messages after a message barrier should be delivered to any consumers of the queue, until all messages before the barrier are consumed. Sort of like a synchronization point. I'd also prefer if all consumers received notification when they reached a barrier.

Anything like this out there?

© Stack Overflow or respective owner

Related posts about java

Related posts about jms