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 is a map message?
Why do we need jms?
How does jms queue work?
How to Configure Open JMS?
Detail about the features of publish model?
What is the difference between the P2P (Peer to Peer) model and subscribe model?
Give an example of using point to point model in JMS?
What is jms mean?
What is jndi? How is it related to jms?
Explain Asynchronous Message Consumption in JMS?
What is jms and how it works?
What are the different parts of a jms message?
What is a jms session?
How does jms listener work?
What are the three parts of the message?