Package org.apache.commons.pool.impl
Object pooling API implementations.
StackObjectPool
(StackKeyedObjectPool
)
provides a simple, Stack
-based
implementation of ObjectPool
(KeyedObjectPool
).
StackObjectPoolFactory
(StackKeyedObjectPoolFactory
)
provides an implementation of the
ObjectPoolFactory
(KeyedObjectPoolFactory
)
factory interface for this class.
GenericObjectPool
(GenericKeyedObjectPool
)
provides a more robust (but also more complicated)
implementation of ObjectPool
(KeyedObjectPool
).
GenericObjectPoolFactory
(GenericKeyedObjectPoolFactory
)
provides an implementation of the
ObjectPoolFactory
(KeyedObjectPoolFactory
)
factory interface for this class.
See also the org.apache.commons.pool
package.
-
Class Summary Class Description GenericKeyedObjectPool<K,V> A configurableKeyedObjectPool
implementation.GenericKeyedObjectPool.Config A simple "struct" encapsulating the configuration information for aGenericKeyedObjectPool
.GenericKeyedObjectPoolFactory<K,V> A factory for creatingGenericKeyedObjectPool
instances.GenericObjectPool<T> A configurableObjectPool
implementation.GenericObjectPool.Config A simple "struct" encapsulating the configuration information for aGenericObjectPool
.GenericObjectPoolFactory<T> A factory for creatingGenericObjectPool
instances.SoftReferenceObjectPool<T> ASoftReference
basedObjectPool
.StackKeyedObjectPool<K,V> A simple,Stack
-basedKeyedObjectPool
implementation.StackKeyedObjectPoolFactory<K,V> A factory for creatingStackKeyedObjectPool
instances.StackObjectPool<T> A simple,Stack
-basedObjectPool
implementation.StackObjectPoolFactory<T> A factory for creatingStackObjectPool
instances.