I'm working on a project that is going to make heavy use of JBoss Messaging (JMS). I'm tasked with building an easy to use wrapper around Messaging for other developers and ...
Say you have a JMS queue, and multiple consumers are watching the queue for messages. You want one of the consumers to get all of a particular type of message, so ...
I want to implement a JMS Queue to ensure that each message is only delivered to one consumer. There will be many different types of consumers on listening to the queue. ...
Please advise me in Choosing "message selector" over "using separate queues" for different type of jms messages(segregated by some msg property).
Message selector impl: http://download.oracle.com/javaee/1.4/api/javax/jms/MessageConsumer.html
public MessageConsumer createConsumer(Destination destination,
...