Object pooling API implementations.
See: Description
| Class Summary | |
|---|---|
| GenericKeyedObjectPool | A configurable KeyedObjectPool implementation. |
| GenericKeyedObjectPoolFactory | A factory for creating GenericKeyedObjectPool instances. |
| GenericKeyedObjectPool.Config | A simple "struct" encapsulating the configuration information for a GenericKeyedObjectPool. |
| GenericObjectPool | A configurable ObjectPool implementation. |
| GenericObjectPoolFactory | A factory for creating GenericObjectPool instances. |
| GenericObjectPool.Config | A simple "struct" encapsulating the configuration information for a GenericObjectPool. |
| SoftReferenceObjectPool |
A java.lang.ref.SoftReference SoftReference based
ObjectPool.
|
| StackKeyedObjectPool |
A simple, java.util.Stack Stack-based KeyedObjectPool implementation.
|
| StackKeyedObjectPoolFactory | A factory for creating StackKeyedObjectPool instances. |
| StackObjectPool |
A simple, java.util.Stack Stack-based ObjectPool implementation.
|
| StackObjectPoolFactory | A factory for creating StackObjectPool instances. |
Object pooling API implementations.
StackObjectPool
( StackKeyedObjectPool)
provides a simple, java.util.Stack 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.