|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
A QueueSession
object provides methods for creating
QueueReceiver
, QueueSender
,
QueueBrowser
, and TemporaryQueue
objects.
If there are messages that have been received but not acknowledged
when a QueueSession
terminates, these messages will be retained
and redelivered when a consumer next accesses the queue.
Session
,
QueueConnection.createQueueSession(boolean, int)
,
XAQueueSession.getQueueSession()
Fields inherited from interface javax.jms.Session |
AUTO_ACKNOWLEDGE, CLIENT_ACKNOWLEDGE, DUPS_OK_ACKNOWLEDGE |
Method Summary | |
QueueBrowser |
createBrowser(Queue queue)
Creates a QueueBrowser object to peek at the messages on
the specified queue. |
QueueBrowser |
createBrowser(Queue queue,
java.lang.String messageSelector)
Creates a QueueBrowser object to peek at the messages on
the specified queue using a message selector. |
Queue |
createQueue(java.lang.String queueName)
Creates a queue identity given a Queue name. |
QueueReceiver |
createReceiver(Queue queue)
Creates a QueueReceiver object to receive messages from the
specified queue. |
QueueReceiver |
createReceiver(Queue queue,
java.lang.String messageSelector)
Creates a QueueReceiver object to receive messages from the
specified queue using a message selector. |
QueueSender |
createSender(Queue queue)
Creates a QueueSender object to send messages to the
specified queue. |
TemporaryQueue |
createTemporaryQueue()
Creates a TemporaryQueue object. |
Methods inherited from interface javax.jms.Session |
close, commit, createBytesMessage, createMapMessage, createMessage, createObjectMessage, createObjectMessage, createStreamMessage, createTextMessage, createTextMessage, getMessageListener, getTransacted, recover, rollback, run, setMessageListener |
Method Detail |
public Queue createQueue(java.lang.String queueName) throws JMSException
Queue
name.
This facility is provided for the rare cases where clients need to dynamically manipulate queue identity. It allows the creation of a queue identity with a provider-specific name. Clients that depend on this ability are not portable.
Note that this method is not for creating the physical queue.
The physical creation of queues is an administrative task and is not
to be initiated by the JMS API. The one exception is the
creation of temporary queues, which is accomplished with the
createTemporaryQueue
method.
queueName
- the name of this Queue
Queue
with the given nameJMSException
- if the session fails to create a queue
due to some internal error.public QueueReceiver createReceiver(Queue queue) throws JMSException
QueueReceiver
object to receive messages from the
specified queue.queue
- the Queue
to accessJMSException
- if the session fails to create a receiver
due to some internal error.InvalidDestinationException
- if an invalid queue is specified.public QueueReceiver createReceiver(Queue queue, java.lang.String messageSelector) throws JMSException
QueueReceiver
object to receive messages from the
specified queue using a message selector.queue
- the Queue
to accessmessageSelector
- only messages with properties matching the
message selector expression are delivered. A value of null or
an empty string indicates that there is no message selector
for the message consumer.JMSException
- if the session fails to create a receiver
due to some internal error.InvalidDestinationException
- if an invalid queue is specified.InvalidSelectorException
- if the message selector is invalid.public QueueSender createSender(Queue queue) throws JMSException
QueueSender
object to send messages to the
specified queue.queue
- the Queue
to access, or null if this is an
unidentified producerJMSException
- if the session fails to create a sender
due to some internal error.InvalidDestinationException
- if an invalid queue is specified.public QueueBrowser createBrowser(Queue queue) throws JMSException
QueueBrowser
object to peek at the messages on
the specified queue.queue
- the Queue
to accessJMSException
- if the session fails to create a browser
due to some internal error.InvalidDestinationException
- if an invalid queue is specified.public QueueBrowser createBrowser(Queue queue, java.lang.String messageSelector) throws JMSException
QueueBrowser
object to peek at the messages on
the specified queue using a message selector.queue
- the Queue
to accessmessageSelector
- only messages with properties matching the
message selector expression are delivered. A value of null or
an empty string indicates that there is no message selector
for the message consumer.JMSException
- if the session fails to create a browser
due to some internal error.InvalidDestinationException
- if an invalid queue is specified.InvalidSelectorException
- if the message selector is invalid.public TemporaryQueue createTemporaryQueue() throws JMSException
TemporaryQueue
object. Its lifetime will be that
of the QueueConnection
unless it is deleted earlier.JMSException
- if the session fails to create a temporary queue
due to some internal error.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |