What is the difference between pub/sub and Point to Point i.e. p2p. ?



What is the difference between pub/sub and Point to Point i.e. p2p. ?..

Answer / maanya shree

pub/sub ? Publish/Subscriber

Publish/Subscriber can have multiple Publisher who publish message and multiple Subscriber who subscribe the messages. This is like watching TV multiple channel and multiple users .

One message can have more then one subscriber.

All the publish messages have the header and subscriber consume the message based on the header.

In JMS we say Topic.

P2p ? Point to point

One message have only one subscriber. Multiple publisher can send multiple messages to the Queue but each message has only one subscriber.

What is the different between JMS and RPC? view answer

RPC : Remote procedure Call

In RPC the method invoker waits for the method to finish execution and return the control back to the invoker. Thus it is completely synchronous in nature.

JMS : Java Messaging System

While in JMS the message sender just sends the message to the destination and continues it's own processing. The sender does not wait for the receiver to respond. This is asynchronous behavior.

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More JMS Interview Questions

What are the different parts of a jms message?

0 Answers  


What is message listener container?

0 Answers  


What is the difference between the P2P (Peer to Peer) model and subscribe model?

0 Answers  


What are Native Clients ?

1 Answers  


What is JMS provider?

1 Answers  






Why do the JMS dbms_aqadm.add_subscriber and dbms_aqadm.remove_subscriber calls sometimes hang when there are concurrent enqueues or dequeues happening on the same queue to which these calls are issued?

1 Answers  


What is meant by jms?

0 Answers  


In which situations we are using jms?

0 Answers  


Which models are supported by jms? Please, explain them.

0 Answers  


Is kafka a jms?

0 Answers  


Why do we use jms?

0 Answers  


How to Configure Open JMS?

0 Answers  


Categories