| Class | Description |
|---|---|
| GenericKeyedObjectPool<K,V> |
A configurable
KeyedObjectPool implementation. |
| GenericKeyedObjectPool.Config |
A simple "struct" encapsulating the
configuration information for a
GenericKeyedObjectPool. |
| GenericKeyedObjectPoolFactory<K,V> |
A factory for creating
GenericKeyedObjectPool instances. |
| GenericObjectPool<T> |
A configurable
ObjectPool implementation. |
| GenericObjectPool.Config |
A simple "struct" encapsulating the
configuration information for a
GenericObjectPool. |
| GenericObjectPoolFactory<T> |
A factory for creating
GenericObjectPool instances. |
| SoftReferenceObjectPool<T> |
A
SoftReference based
ObjectPool. |
| StackKeyedObjectPool<K,V> |
A simple,
Stack-based KeyedObjectPool implementation. |
| StackKeyedObjectPoolFactory<K,V> |
A factory for creating
StackKeyedObjectPool instances. |
| StackObjectPool<T> |
A simple,
Stack-based ObjectPool implementation. |
| StackObjectPoolFactory<T> |
A factory for creating
StackObjectPool instances. |
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.
Copyright © 2001-2015 The Apache Software Foundation. All Rights Reserved.