Package org.apache.activemq.jms.pool
Class PooledConnection
java.lang.Object
org.apache.activemq.jms.pool.PooledConnection
- All Implemented Interfaces:
jakarta.jms.Connection,jakarta.jms.QueueConnection,jakarta.jms.TopicConnection,AutoCloseable
public class PooledConnection
extends Object
implements jakarta.jms.TopicConnection, jakarta.jms.QueueConnection
Represents a proxy
Connection which is-a TopicConnection and
QueueConnection which is pooled and on close() will return
its reference to the ConnectionPool backing it.
NOTE this implementation is only intended for use when sending
messages. It does not deal with pooling of consumers; for that look at a
library like Jencks such as in this example-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new PooledConnection instance that uses the given ConnectionPool to create and manage its resources. -
Method Summary
Modifier and TypeMethodDescriptionprotected voidprotected voidThe PooledSession tracks all Sessions that it created and now we close them.protected voidRemove all of the temporary destinations created for this connection.voidclose()jakarta.jms.ConnectionConsumercreateConnectionConsumer(jakarta.jms.Destination destination, String selector, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) jakarta.jms.ConnectionConsumercreateConnectionConsumer(jakarta.jms.Queue queue, String selector, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) jakarta.jms.ConnectionConsumercreateConnectionConsumer(jakarta.jms.Topic topic, String s, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) jakarta.jms.ConnectionConsumercreateDurableConnectionConsumer(jakarta.jms.Topic topic, String selector, String s1, jakarta.jms.ServerSessionPool serverSessionPool, int i) jakarta.jms.QueueSessioncreateQueueSession(boolean transacted, int ackMode) jakarta.jms.SessionCreates aSessionobject.jakarta.jms.SessioncreateSession(boolean transacted, int ackMode) jakarta.jms.SessioncreateSession(int sessionMode) Creates aSessionobject.protected jakarta.jms.SessioncreateSession(SessionKey key) jakarta.jms.ConnectionConsumercreateSharedConnectionConsumer(jakarta.jms.Topic topic, String subscriptionName, String messageSelector, jakarta.jms.ServerSessionPool sessionPool, int maxMessages) jakarta.jms.ConnectionConsumercreateSharedDurableConnectionConsumer(jakarta.jms.Topic topic, String subscriptionName, String messageSelector, jakarta.jms.ServerSessionPool sessionPool, int maxMessages) jakarta.jms.TopicSessioncreateTopicSession(boolean transacted, int ackMode) jakarta.jms.Connectionjakarta.jms.ExceptionListenerjakarta.jms.ConnectionMetaDataintintintFactory method to create a new instance.voidonSessionClosed(PooledSession session) voidonTemporaryQueueCreate(jakarta.jms.TemporaryQueue tempQueue) voidonTemporaryTopicCreate(jakarta.jms.TemporaryTopic tempTopic) voidsetClientID(String clientID) voidsetExceptionListener(jakarta.jms.ExceptionListener exceptionListener) voidstart()voidstop()toString()
-
Field Details
-
pool
-
-
Constructor Details
-
PooledConnection
Creates a new PooledConnection instance that uses the given ConnectionPool to create and manage its resources. The ConnectionPool instance can be shared amongst many PooledConnection instances.- Parameters:
pool- The connection and pool manager backing this proxy connection object.
-
-
Method Details
-
newInstance
Factory method to create a new instance. -
close
public void close() throws jakarta.jms.JMSException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
start
public void start() throws jakarta.jms.JMSException- Specified by:
startin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
stop
public void stop() throws jakarta.jms.JMSException- Specified by:
stopin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
createConnectionConsumer
public jakarta.jms.ConnectionConsumer createConnectionConsumer(jakarta.jms.Destination destination, String selector, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) throws jakarta.jms.JMSException - Specified by:
createConnectionConsumerin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
createConnectionConsumer
public jakarta.jms.ConnectionConsumer createConnectionConsumer(jakarta.jms.Topic topic, String s, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) throws jakarta.jms.JMSException - Specified by:
createConnectionConsumerin interfacejakarta.jms.TopicConnection- Throws:
jakarta.jms.JMSException
-
createDurableConnectionConsumer
public jakarta.jms.ConnectionConsumer createDurableConnectionConsumer(jakarta.jms.Topic topic, String selector, String s1, jakarta.jms.ServerSessionPool serverSessionPool, int i) throws jakarta.jms.JMSException - Specified by:
createDurableConnectionConsumerin interfacejakarta.jms.Connection- Specified by:
createDurableConnectionConsumerin interfacejakarta.jms.TopicConnection- Throws:
jakarta.jms.JMSException
-
getClientID
- Specified by:
getClientIDin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
getExceptionListener
public jakarta.jms.ExceptionListener getExceptionListener() throws jakarta.jms.JMSException- Specified by:
getExceptionListenerin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
getMetaData
public jakarta.jms.ConnectionMetaData getMetaData() throws jakarta.jms.JMSException- Specified by:
getMetaDatain interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
setExceptionListener
public void setExceptionListener(jakarta.jms.ExceptionListener exceptionListener) throws jakarta.jms.JMSException - Specified by:
setExceptionListenerin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
setClientID
- Specified by:
setClientIDin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
createConnectionConsumer
public jakarta.jms.ConnectionConsumer createConnectionConsumer(jakarta.jms.Queue queue, String selector, jakarta.jms.ServerSessionPool serverSessionPool, int maxMessages) throws jakarta.jms.JMSException - Specified by:
createConnectionConsumerin interfacejakarta.jms.QueueConnection- Throws:
jakarta.jms.JMSException
-
createQueueSession
public jakarta.jms.QueueSession createQueueSession(boolean transacted, int ackMode) throws jakarta.jms.JMSException - Specified by:
createQueueSessionin interfacejakarta.jms.QueueConnection- Throws:
jakarta.jms.JMSException
-
createTopicSession
public jakarta.jms.TopicSession createTopicSession(boolean transacted, int ackMode) throws jakarta.jms.JMSException - Specified by:
createTopicSessionin interfacejakarta.jms.TopicConnection- Throws:
jakarta.jms.JMSException
-
createSession
public jakarta.jms.Session createSession() throws jakarta.jms.JMSExceptionCreates aSessionobject.- Specified by:
createSessionin interfacejakarta.jms.Connection- Throws:
jakarta.jms.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:
- 2.0
-
createSession
public jakarta.jms.Session createSession(int sessionMode) throws jakarta.jms.JMSException Creates aSessionobject.- Specified by:
createSessionin interfacejakarta.jms.Connection- Parameters:
acknowledgeMode- 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:
jakarta.jms.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:
- 2.0
- See Also:
-
Session.AUTO_ACKNOWLEDGESession.CLIENT_ACKNOWLEDGESession.DUPS_OK_ACKNOWLEDGE
-
createSession
public jakarta.jms.Session createSession(boolean transacted, int ackMode) throws jakarta.jms.JMSException - Specified by:
createSessionin interfacejakarta.jms.Connection- Throws:
jakarta.jms.JMSException
-
onTemporaryQueueCreate
public void onTemporaryQueueCreate(jakarta.jms.TemporaryQueue tempQueue) -
onTemporaryTopicCreate
public void onTemporaryTopicCreate(jakarta.jms.TemporaryTopic tempTopic) -
onSessionClosed
-
getConnection
public jakarta.jms.Connection getConnection() throws jakarta.jms.JMSException- Throws:
jakarta.jms.JMSException
-
assertNotClosed
protected void assertNotClosed() throws jakarta.jms.IllegalStateException- Throws:
jakarta.jms.IllegalStateException
-
createSession
- Throws:
jakarta.jms.JMSException
-
toString
-
cleanupConnectionTemporaryDestinations
protected void cleanupConnectionTemporaryDestinations()Remove all of the temporary destinations created for this connection. This is important since the underlying connection may be reused over a long period of time, accumulating all of the temporary destinations from each use. However, from the perspective of the lifecycle from the client's view, close() closes the connection and, therefore, deletes all of the temporary destinations created. -
cleanupAllLoanedSessions
protected void cleanupAllLoanedSessions()The PooledSession tracks all Sessions that it created and now we close them. Closing the PooledSession will return the internal Session to the Pool of Session after cleaning up all the resources that the Session had allocated for this PooledConnection. -
getNumSessions
public int getNumSessions()- Returns:
- the total number of Pooled session including idle sessions that are not currently loaned out to any client.
-
getNumActiveSessions
public int getNumActiveSessions()- Returns:
- the number of Sessions that are currently checked out of this Connection's session pool.
-
getNumtIdleSessions
public int getNumtIdleSessions()- Returns:
- the number of Sessions that are idle in this Connection's sessions pool.
-