What is Producer and Consumer?
Answer / munnu
Messaging lets a servlet delegate processing to a batch process either on the same machine or on a separate machine. The servlet creates a message and sends it to a queue. The servlet immediately completes and when the batch process is ready, it processes the message.
Messaging is therefore comprised of three main components:
A Producer creates messages and sends them to a Queue. The Producer could be something like a Servlet.
A Queue stores the messages from the Produces and provides them to a Consumer when ready. The Queue is implemented by the messaging provider.
A Consumer processes messages as they become available in the Queue. The Consumer is typically a bean implementing the MessageListener interface.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is jms queue in java?
What is the diffrence between Java Mail and JMS Queue?
How to Set message priority levels?
What are the core JMS-related objects required for each JMS-enabled application?
What is the difference between a queue and a topic?
How to handle the exception caused by jms?
Which models are supported by jms? Please, explain them.
What is MOM in reference to JMS?
What Is the JMS API?
Where is jms used?
Can JMS utilities automatically re-establish a connection if one side of the communication link (i.e. an application that's sending/receiving messages) goes down and is restarted? Are there APIs to help detect that the other side broke a connection (went down)?
what is distributed queues and topics and how they works