43.2. Interface Definition

package javax.jms;
public interface Session extends java.lang.Runnable {
   static final int AUTO_ACKNOWLEDGE      = 1;
   static final int CLIENT_ACKNOWLEDGE    = 2;
   static final int DUPS_OK_ACKNOWLEDGE   = 3;
   void close() throws JMSException;
   void commit() throws JMSException;
   BytesMessage createBytesMessage() throws JMSException;
   MapMessage createMapMessage() throws JMSException;
   Message createMessage() throws JMSException;
   ObjectMessage createObjectMessage() throws JMSException;
   ObjectMessage createObjectMessage(Serializable object)
                                                throws JMSException;
   StreamMessage createStreamMessage() throws JMSException;
   TextMessage createTextMessage() throws JMSException;
   TextMessage createTextMessage(String text) throws JMSException; boolean ...

Get Java™ Message Service API Tutorial and Reference: Messaging for the J2EE™ Platform now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.