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
Why jms is used in java?
Explain the difference between topic and queue?
What are the components of a jms messaging application?
Explain Asynchronous Message Consumption in JMS?
Is jms a protocol?
What is the difference between Jms and Jvt ?
How do I start jms server?
What is the use of jms? In which situations we are using jms?
How do I configure jdbc so that the jms jdbc store recovers automatically?
What is a jms session?
What is mean by jms?
What is the use of jmstemplate in spring?
What is the publish-and-subscribe model in jms?
What is jms connection factory?
What does jms stand for?