0 Replies Latest reply on Jul 6, 2011 3:16 AM by into_java

    Round robin implementation of Consumer in Core.

    into_java

      In Jms we have a way in which we define a queue and if there are more than one subscribers on the queue then the messages are delievered in round robin fashion to each consumer once only.

       

      How do i do this with the hornetq core concepts of address and Queues in core ?

      I have a Many Producer --->single Address --which maps to One --->Queue and a consumer.

      in each consumer i am doing some db Transcations and hence the consumer is blocked during that time...Any Suggestions?

       

      I want to add more consumers to the same Queue so that messages are delievered in round robin fashion to these consumers so that if one consumer is blocked on db transaction ---other consumer can still receives messages from queue. ?

       

      Any Pointers ?