InterviewSolution
| 1. |
Which Models Are Supported By Jms? Please, Explain Them. |
|
Answer» Publish/subscribe (pub/sub). This MODEL ALLOWS a client (publisher) to send messages to a JMS TOPIC. These messages are retrieved by other CLIENTS (subscribers) (it may happen so that a topic has no subscribers) asynchronously. Pub/sub model requires a broker distributing messages to DIFFERENT consumers. Publish/subscribe (pub/sub). This model allows a client (publisher) to send messages to a JMS topic. These messages are retrieved by other clients (subscribers) (it may happen so that a topic has no subscribers) asynchronously. Pub/sub model requires a broker distributing messages to different consumers. |
|