| Home >> All >> org >> apache >> commons >> pool >> [ impl Javadoc ] |
org.apache.commons.pool.impl: Javadoc index of package org.apache.commons.pool.impl.
Package Samples:
org.apache.commons.pool.impl: Object pooling API.
Classes:
GenericKeyedObjectPool: A configurable org.apache.commons.pool.KeyedObjectPool implementation. When coupled with the appropriate org.apache.commons.pool.KeyedPoolableObjectFactory , GenericKeyedObjectPool provides robust pooling functionality for arbitrary objects. A GenericKeyedObjectPool provides a number of configurable parameters: maxActive 55 controls the maximum number of objects (per key) that can be borrowed from the pool at one time. When non-positive, there is no limit to the number of objects that may be active at one time. When maxActive 55 is exceeded, the pool is said to be exhausted. maxIdle 55 controls ...
GenericObjectPool: A configurable org.apache.commons.pool.ObjectPool implementation. When coupled with the appropriate org.apache.commons.pool.PoolableObjectFactory , GenericObjectPool provides robust pooling functionality for arbitrary objects. A GenericObjectPool provides a number of configurable parameters: maxActive 55 controls the maximum number of objects that can be borrowed from the pool at one time. When non-positive, there is no limit to the number of objects that may be active at one time. When maxActive 55 is exceeded, the pool is said to be exhausted. maxIdle 55 controls the maximum number of objects ...
StackKeyedObjectPool: A simple, Stack -based org.apache.commons.pool.KeyedObjectPool implementation. Given a org.apache.commons.pool.KeyedPoolableObjectFactory , this class will maintain a simple pool of instances. A finite number of "sleeping" or inactive instances is enforced, but when the pool is empty, new instances are created to support the new load. Hence this class places no limit on the number of "active" instances created by the pool, but is quite useful for re-using Object s without introducing artificial limits.
StackObjectPool: A simple, Stack -based org.apache.commons.pool.ObjectPool implementation. Given a org.apache.commons.pool.PoolableObjectFactory , this class will maintain a simple pool of instances. A finite number of "sleeping" or idle instances is enforced, but when the pool is empty, new instances are created to support the new load. Hence this class places no limit on the number of "active" instances created by the pool, but is quite useful for re-using Object s without introducing artificial limits.
SoftReferenceObjectPool: A SoftReference based org.apache.commons.pool.ObjectPool .
GenericKeyedObjectPoolFactory: A factory for creating GenericKeyedObjectPool instances.
StackKeyedObjectPoolFactory: A factory for creating StackKeyedObjectPool instances.
GenericObjectPoolFactory: A factory for creating GenericObjectPool instances.
StackObjectPoolFactory: A factory for creating StackObjectPool instances.
TestAll: JUnit test suite for the org.apache.commons.pool.impl package.
TestGenericKeyedObjectPool
TestGenericObjectPool
TestSoftReferenceObjectPool
TestSoftRefOutOfMemory
TestStackKeyedObjectPool
TestStackObjectPool
| Home | Contact Us | Privacy Policy | Terms of Service |