Example usage for Java javax.jms Connection fields, constructors, methods, implement or subclass
The text is from its open source code.
void | close() Closes the connection. |
Session | createSession(boolean transacted, int acknowledgeMode) Creates a Session object, specifying transacted and acknowledgeMode . |
Session | createSession() Creates a Session object, specifying no arguments. |
String | getClientID() Gets the client identifier for this connection. |
ExceptionListener | getExceptionListener() Gets the ExceptionListener object for this connection. |
ConnectionMetaData | getMetaData() Gets the metadata for this connection. |
void | setClientID(String clientID) Sets the client identifier for this connection. |
void | setExceptionListener(ExceptionListener listener) Sets an exception listener for this connection. |
void | start() Starts (or restarts) a connection's delivery of incoming messages. |
void | stop() Temporarily stops a connection's delivery of incoming messages. |