See: Description
Class | Description |
---|---|
AbstractPool<T extends PooledObject<?>> |
Base class for object pool implementations.
|
JMSConnectionPool |
Decorator of the provided
ConnectionFactory to ensure maximum reuse
of Connection instances. |
MessageProducerPool |
Pool for ensuring maximum reuse of
MessageProducer s. |
MessageProducerPoolFactory |
Factory for generating
MessageProducerPool from a Session . |
PooledConnection |
Wrapper for
Connection that returns it to the
JMSConnectionPool with a call to AutoCloseable.close() . |
PooledObject<T> |
Base class for wrappers of pooled objects.
|
PooledProducer |
Pooled object for ensuring maximum reuse of
MessageProducer objects. |
PooledSession |
Wrapper for
Session that returns it to the pool with a call to
AutoCloseable.close() . |
SessionPool |
Pool for ensuring maximum reuse of
Session s within an application. |
SessionPoolFactory |
Factory for generating a
SessionPool from a Connection . |