Java javax.jms QueueSession fields, constructors, methods, implement or subclass

Example usage for Java javax.jms QueueSession fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.jms QueueSession.

The text is from its open source code.

Implementation

javax.jms.QueueSession has the following implementations.
Click this link to see all its implementation.

Method

voidclose()
Closes the session.
voidcommit()
Commits all messages done in this transaction and releases any locks currently held.
QueueBrowsercreateBrowser(Queue queue)
Creates a QueueBrowser object to peek at the messages on the specified queue.
QueueBrowsercreateBrowser(Queue queue, String messageSelector)
Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
MessageConsumercreateConsumer(Destination destination, java.lang.String messageSelector)
Creates a MessageConsumer for the specified destination, using a message selector.
MessagecreateMessage()
Creates a Message object.
ObjectMessagecreateObjectMessage(Serializable object)
Creates an initialized ObjectMessage object.
MessageProducercreateProducer(Destination destination)
Creates a MessageProducer to send messages to the specified destination.
QueuecreateQueue(String queueName)
Creates a queue identity given a Queue name.
QueueReceivercreateReceiver(Queue queue)
Creates a QueueReceiver object to receive messages from the specified queue.
QueueReceivercreateReceiver(Queue queue, String messageSelector)
Creates a QueueReceiver object to receive messages from the specified queue using a message selector.
QueueSendercreateSender(Queue queue)
Creates a QueueSender object to send messages to the specified queue.
TextMessagecreateTextMessage()
Creates a TextMessage object.
TextMessagecreateTextMessage(String text)
Creates an initialized TextMessage object.
StringtoString()
Returns a string representation of the object.