JMS Queue
Overview
Creates the queuing mechanism for handling JMS messages. This system of messaging is
known as Point to Point. Message Producers place their messages on the queue, and
a Message Consumer takes each message to use. A message from the queue can only be
taken by one Consumer.
Participants
QueueName
- name of the class to handle the queue, creates the relevant queue handling methods
- provides a basic main() method that sets up QueueConnectionFactory, Queue,
QueueConnection, QueueSession and QueueReceiver.
Parameters
Message