What is the difference between Point to Point and Publish/Subscribe
Point-to-point (P2P)
Answer Posted / munnu
In point-to-point, messages are sent via queues. Messages are put onto the queues by the message producers (the clients). The message consumer is responsible for pulling the message from the queue. Point-to-point is typically used when a given message must be processed (received) only once by a given consumer. In this way, there is only one consumer of the given message.
Publish-and-subscribe (pub/sub)
In publish-and-subscribe, messages are sent through topics. Messages are published to topics by the message producers. The messages may be received by any consumers that subscribe to the given topic. In this way, a message may be received, or processed, by multiple consumers.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the basic advantages of jms?
Give an example of using the publish/subscribe model.
How may messaging models do JMS provide for and what are they?
What is jms correlation id?
What is the advantage of persistent message delivery compared to nonpersistent delivery?
Is kafka a jms?
How to Set message priority levels?
How do I handle request/response using jms?
What is a jms connection?
Explain JMS and its Component?
What are the three parts of the message?
How to send xml message to jms queue using java?
What is jms queue?
Does weblogic jms support clustering?
What is a message in software?