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 |
How to consume message from jms queue in soa 12c?
What are the different elements present in JMS?
What does jms stand for?
What is JMS application ?
Explain about Connection factory interface?
Why doesn’t the JMS API provide end-to-end synchronous message delivery and notification of delivery?
Why does jmssession.createtopic or jmssession.createqueue fail to create a destination in wls jms 6.1 (it worked in 5.1)?
What are the different messaging paradigms JMS supports?
Which messaging modes are included in the java messaging service jms )?
What is JMS session?
How do I use a startup class to initialize and later reference jms objects?
What is spring jms?