| XAQueueSession.java |
/*
* JBoss, the OpenSource EJB server
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package javax.jms;
/** An <CODE>XAQueueSession</CODE> provides a regular <CODE>QueueSession</CODE>,
* which can be used to
* create <CODE>QueueReceiver</CODE>, <CODE>QueueSender</CODE>, and
*<CODE>QueueBrowser</CODE> objects (optional).
*
* <P>The <CODE>XAQueueSession</CODE> interface is optional. JMS providers
* are not required to support this interface. This interface is for
* use by JMS providers to support transactional environments.
* Client programs are strongly encouraged to use the transactional support
* available in their environment, rather than use these XA
* interfaces directly.
*
* @see javax.jms.XASession
*/
public interface XAQueueSession extends XASession {
/** Gets the queue session associated with this <CODE>XAQueueSession</CODE>.
*
* @return the queue session object
*
* @exception JMSException if an internal error occurs.
*/
QueueSession
getQueueSession() throws JMSException;
}
| XAQueueSession.java |