Interface Connection
-
- All Known Subinterfaces:
QueueConnection,TopicConnection,XAConnection,XAQueueConnection,XATopicConnection
public interface ConnectionAConnectionobject is a client's active connection to its JMS provider. It typically allocates provider resources outside the Java virtual machine (JVM).Connections support concurrent use.
A connection serves several purposes:
- It encapsulates an open connection with a JMS provider. It typically represents an open TCP/IP socket between a client and the service provider software.
- Its creation is where client authentication takes place.
- It can specify a unique client identifier.
- It provides a
ConnectionMetaDataobject. - It supports an optional
ExceptionListenerobject.
Because the creation of a connection involves setting up authentication and communication, a connection is a relatively heavyweight object. Most clients will do all their messaging with a single connection. Other more advanced applications may use several connections. The JMS API does not architect a reason for using multiple connections; however, there may be operational reasons for doing so.
A JMS client typically creates a connection, one or more sessions, and a number of message producers and consumers. When a connection is created, it is in stopped mode. That means that no messages are being delivered.
It is typical to leave the connection in stopped mode until setup is complete (that is, until all message consumers have been created). At that point, the client calls the connection's
startmethod, and messages begin arriving at the connection's consumers. This setup convention minimizes any client confusion that may result from asynchronous message delivery while the client is still in the process of setting itself up.A connection can be started immediately, and the setup can be done afterwards. Clients that do this must be prepared to handle asynchronous message delivery while they are still in the process of setting up.
A message producer can send messages while a connection is stopped.
- See Also:
ConnectionFactory,QueueConnection,TopicConnection
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidclose()Closes the connection.ConnectionConsumercreateConnectionConsumer(Destination destination, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)Creates a connection consumer for this connection (optional operation).ConnectionConsumercreateDurableConnectionConsumer(Topic topic, java.lang.String subscriptionName, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages)Create a durable connection consumer for this connection (optional operation).SessioncreateSession(boolean transacted, int acknowledgeMode)Creates aSessionobject.java.lang.StringgetClientID()Gets the client identifier for this connection.ExceptionListenergetExceptionListener()Gets theExceptionListenerobject for this connection.ConnectionMetaDatagetMetaData()Gets the metadata for this connection.voidsetClientID(java.lang.String clientID)Sets the client identifier for this connection.voidsetExceptionListener(ExceptionListener listener)Sets an exception listener for this connection.voidstart()Starts (or restarts) a connection's delivery of incoming messages.voidstop()Temporarily stops a connection's delivery of incoming messages.
-
-
-
Method Detail
-
createSession
Session createSession(boolean transacted, int acknowledgeMode) throws JMSException
Creates aSessionobject.- Parameters:
transacted- indicates whether the session is transactedacknowledgeMode- indicates whether the consumer or the client will acknowledge any messages it receives; ignored if the session is transacted. Legal values areSession.AUTO_ACKNOWLEDGE,Session.CLIENT_ACKNOWLEDGE, andSession.DUPS_OK_ACKNOWLEDGE.- Returns:
- a newly created session
- Throws:
JMSException- if theConnectionobject fails to create a session due to some internal error or lack of support for the specific transaction and acknowledgement mode.- Since:
- 1.1
- See Also:
Session.AUTO_ACKNOWLEDGE,Session.CLIENT_ACKNOWLEDGE,Session.DUPS_OK_ACKNOWLEDGE
-
getClientID
java.lang.String getClientID() throws JMSExceptionGets the client identifier for this connection.This value is specific to the JMS provider. It is either preconfigured by an administrator in a
ConnectionFactoryobject or assigned dynamically by the application by calling thesetClientIDmethod.- Returns:
- the unique client identifier
- Throws:
JMSException- if the JMS provider fails to return the client ID for this connection due to some internal error.
-
setClientID
void setClientID(java.lang.String clientID) throws JMSExceptionSets the client identifier for this connection.The preferred way to assign a JMS client's client identifier is for it to be configured in a client-specific
ConnectionFactoryobject and transparently assigned to theConnectionobject it creates.Alternatively, a client can set a connection's client identifier using a provider-specific value. The facility to set a connection's client identifier explicitly is not a mechanism for overriding the identifier that has been administratively configured. It is provided for the case where no administratively specified identifier exists. If one does exist, an attempt to change it by setting it must throw an
IllegalStateException. If a client sets the client identifier explicitly, it must do so immediately after it creates the connection and before any other action on the connection is taken. After this point, setting the client identifier is a programming error that should throw anIllegalStateException.The purpose of the client identifier is to associate a connection and its objects with a state maintained on behalf of the client by a provider. The only such state identified by the JMS API is that required to support durable subscriptions.
If another connection with the same
clientIDis already running when this method is called, the JMS provider should detect the duplicate ID and throw anInvalidClientIDException.- Parameters:
clientID- the unique client identifier- Throws:
JMSException- if the JMS provider fails to set the client ID for this connection due to some internal error.InvalidClientIDException- if the JMS client specifies an invalid or duplicate client ID.IllegalStateException- if the JMS client attempts to set a connection's client ID at the wrong time or when it has been administratively configured.
-
getMetaData
ConnectionMetaData getMetaData() throws JMSException
Gets the metadata for this connection.- Returns:
- the connection metadata
- Throws:
JMSException- if the JMS provider fails to get the connection metadata for this connection.- See Also:
ConnectionMetaData
-
getExceptionListener
ExceptionListener getExceptionListener() throws JMSException
Gets theExceptionListenerobject for this connection. Not everyConnectionhas anExceptionListenerassociated with it.- Returns:
- the
ExceptionListenerfor this connection, or null. if noExceptionListeneris associated with this connection. - Throws:
JMSException- if the JMS provider fails to get theExceptionListenerfor this connection.- See Also:
setExceptionListener(javax.jms.ExceptionListener)
-
setExceptionListener
void setExceptionListener(ExceptionListener listener) throws JMSException
Sets an exception listener for this connection.If a JMS provider detects a serious problem with a connection, it informs the connection's
ExceptionListener, if one has been registered. It does this by calling the listener'sonExceptionmethod, passing it aJMSExceptionobject describing the problem.An exception listener allows a client to be notified of a problem asynchronously. Some connections only consume messages, so they would have no other way to learn their connection has failed.
A connection serializes execution of its
ExceptionListener.A JMS provider should attempt to resolve connection problems itself before it notifies the client of them.
- Parameters:
listener- the exception listener- Throws:
JMSException- if the JMS provider fails to set the exception listener for this connection.
-
start
void start() throws JMSExceptionStarts (or restarts) a connection's delivery of incoming messages. A call tostarton a connection that has already been started is ignored.- Throws:
JMSException- if the JMS provider fails to start message delivery due to some internal error.- See Also:
stop()
-
stop
void stop() throws JMSException
Temporarily stops a connection's delivery of incoming messages. Delivery can be restarted using the connection'sstartmethod. When the connection is stopped, delivery to all the connection's message consumers is inhibited: synchronous receives block, and messages are not delivered to message listeners.This call blocks until receives and/or message listeners in progress have completed.
Stopping a connection has no effect on its ability to send messages. A call to
stopon a connection that has already been stopped is ignored.A call to
stopmust not return until delivery of messages has paused. This means that a client can rely on the fact that none of its message listeners will be called and that all threads of control waiting forreceivecalls to return will not return with a message until the connection is restarted. The receive timers for a stopped connection continue to advance, so receives may time out while the connection is stopped.If message listeners are running when
stopis invoked, thestopcall must wait until all of them have returned before it may return. While these message listeners are completing, they must have the full services of the connection available to them.- Throws:
JMSException- if the JMS provider fails to stop message delivery due to some internal error.- See Also:
start()
-
close
void close() throws JMSExceptionCloses the connection.Since a provider typically allocates significant resources outside the JVM on behalf of a connection, clients should close these resources when they are not needed. Relying on garbage collection to eventually reclaim these resources may not be timely enough.
There is no need to close the sessions, producers, and consumers of a closed connection.
Closing a connection causes all temporary destinations to be deleted.
When this method is invoked, it should not return until message processing has been shut down in an orderly fashion. This means that all message listeners that may have been running have returned, and that all pending receives have returned. A close terminates all pending message receives on the connection's sessions' consumers. The receives may return with a message or with null, depending on whether there was a message available at the time of the close. If one or more of the connection's sessions' message listeners is processing a message at the time when connection
closeis invoked, all the facilities of the connection and its sessions must remain available to those listeners until they return control to the JMS provider.Closing a connection causes any of its sessions' transactions in progress to be rolled back. In the case where a session's work is coordinated by an external transaction manager, a session's
commitandrollbackmethods are not used and the result of a closed session's work is determined later by the transaction manager. Closing a connection does NOT force an acknowledgment of client-acknowledged sessions.Invoking the
acknowledgemethod of a received message from a closed connection's session must throw anIllegalStateException. Closing a closed connection must NOT throw an exception.- Throws:
JMSException- if the JMS provider fails to close the connection due to some internal error. For example, a failure to release resources or to close a socket connection can cause this exception to be thrown.
-
createConnectionConsumer
ConnectionConsumer createConnectionConsumer(Destination destination, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException
Creates a connection consumer for this connection (optional operation). This is an expert facility not used by regular JMS clients.- Parameters:
destination- the destination 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.sessionPool- the server session pool to associate with this connection consumermaxMessages- the maximum number of messages that can be assigned to a server session at one time- Returns:
- the connection consumer
- Throws:
JMSException- if theConnectionobject fails to create a connection consumer due to some internal error or invalid arguments forsessionPoolandmessageSelector.InvalidDestinationException- if an invalid destination is specified.InvalidSelectorException- if the message selector is invalid.- Since:
- 1.1
- See Also:
ConnectionConsumer
-
createDurableConnectionConsumer
ConnectionConsumer createDurableConnectionConsumer(Topic topic, java.lang.String subscriptionName, java.lang.String messageSelector, ServerSessionPool sessionPool, int maxMessages) throws JMSException
Create a durable connection consumer for this connection (optional operation). This is an expert facility not used by regular JMS clients.- Parameters:
topic- topic to accesssubscriptionName- durable subscription namemessageSelector- 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.sessionPool- the server session pool to associate with this durable connection consumermaxMessages- the maximum number of messages that can be assigned to a server session at one time- Returns:
- the durable connection consumer
- Throws:
JMSException- if theConnectionobject fails to create a connection consumer due to some internal error or invalid arguments forsessionPoolandmessageSelector.InvalidDestinationException- if an invalid destination is specified.InvalidSelectorException- if the message selector is invalid.- Since:
- 1.1
- See Also:
ConnectionConsumer
-
-