what is topic and what is queue ?
Answers were Sorted based on User's Feedback
Answer / skr285
sorry when i was gone through JMS
i found one to one is Queue(i.e, poin to point)
topic is sender and publisher(i.e, one to many)
| Is This Answer Correct ? | 11 Yes | 1 No |
Answer / sachin
JMS Topic is a JMS managed object used to manage message
comminucation between publisher ( sender of message) and
subscriber ( receiver of message).
Queue is JMS managed object used for holding messages
waiting for subscribers to consume. When all subscribers
consumed the message , message will be removed from queue.
To put an anology with email system consider all emails
with subject 'Offers from Tesco Stores'. This subject is
called topic. If there are multiple messages of same
subject headings, it will be called as queue, waiting to be
read.
| Is This Answer Correct ? | 7 Yes | 5 No |
Answer / neeraj
Queue is point to point mechanism ( means once message is
picked up from queue no one else can pick up message )
while topic is pub sub mechanism ( means one Publisher and
different subscriber)
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / yogi_spysr
Topic>>> is a object which is used to get the producer on a
destination,, and we publish a msg and send it to that
destination,,,
so if we have many listeners to our msg then the msg will
be recieved by all recievers
:::: means it is a Kind of Publisher-Subscriber relation
one publisher and many subscriber
on the right hand we have
Queue >>>
is a object which link us to a queue
since in a queue of msgs and a msg will remain in queue
until it is recieved by the particular reciever who is
supposed to get it
its something like
MESSAGE --->> |Message Queue|--->> Destination
if msg is retrived then it is deleted
simply
when ::::Queue think of Mobile SMS service
topic think of Airtel SetUP Box
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sailaja
1.After reciving message from JMS, byusing Queue connection
factory can send it to exact mdb, i,e point to point.
2.After reciving message from JMS, byusing Topic connection
factory can send it to one r multiple mdb's, i,e Publish to
Subcribe.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / manavver
topic means one to many relation ship and queue in the sence
one to one relation ship
| Is This Answer Correct ? | 7 Yes | 12 No |
Which messaging modes are included in the java messaging service jms )?
What is hermes jms?
What is a topic in messaging?
Which types of jdbc databases does weblogic jms support?
How does a typical client perform the communication?
How do the wls jms 6.1 server/destination message maximum and threshold values work?
What is jms broker in sas?
Explain how Application server handles the JMS Connection?
What is the important part of JMS applications?
What is an object message?
What is jms queue in java?
Give an example of using the point-to-point model