Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was wondering the difference between a JMS Queue and JMS Topic.

From the activemq page, it says

A. Topic

In JMS a Topic implements publish and subscribe semantics. When you publish a message it goes to all the subscribers who are interested - so zero to many subscribers will receive a copy of the message. Only subscribers who had an active subscription at the time the broker receives the message will get a copy of the message.

B. Queue

A JMS Queue implements load balancer semantics. A single message will be received by exactly one consumer. If there are no consumers available at the time the message is sent it will be kept until a consumer is available that can process the message. If a consumer receives a message and does not acknowledge it before closing then the message will be redelivered to another consumer. A queue can have many consumers with messages load balanced across the available consumers.

I am looking to have a 'thing' that will issue every subscribers with a copy of the message in sequence. That is to say, the messages received by each subscriber will be in sequence as received by ActiveMQ.

Any thoughts?

share|improve this question
3  
It does exactly what it says on the tin. In what way is the description not clear? – Tom Anderson Apr 7 '11 at 11:49

1 Answer

up vote 11 down vote accepted

That means a topic is appropriate. A queue means a message goes to one and only one possible subscriber. A topic goes to each and every subscriber.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.