A B C D E G I K L M N O P R S T V W 

A

activateObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedPoolableObjectFactory
Reinitialize an instance to be returned by the pool.
activateObject(T) - 类 中的方法org.apache.commons.pool.BasePoolableObjectFactory
No-op.
activateObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedPoolableObjectFactory
Reinitialize an instance to be returned by the pool.
activateObject(T) - 接口 中的方法org.apache.commons.pool.PoolableObjectFactory
Reinitialize an instance to be returned by the pool.
adapt(KeyedPoolableObjectFactory<Object, V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt a KeyedPoolableObjectFactory instance to work where a PoolableObjectFactory is needed.
adapt(KeyedPoolableObjectFactory<K, V>, K) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt a KeyedPoolableObjectFactory instance to work where a PoolableObjectFactory is needed using the specified key when delegating.
adapt(PoolableObjectFactory<V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt a PoolableObjectFactory instance to work where a KeyedPoolableObjectFactory is needed.
adapt(KeyedObjectPool<Object, V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt a KeyedObjectPool instance to work where an ObjectPool is needed.
adapt(KeyedObjectPool<Object, V>, Object) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt a KeyedObjectPool instance to work where an ObjectPool is needed using the specified key when delegating.
adapt(ObjectPool<V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Adapt an ObjectPool to work where an KeyedObjectPool is needed.
addObject(K) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
addObject() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Not supported in this base implementation.
addObject(K) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Create an object using the factory, passivate it, and then place it in the idle object pool.
addObject() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Create an object, and place it into the pool.
addObject() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Create an object, and place it into the pool.
addObject(K) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Create an object using the factory, passivate it, and then placed in the idle object pool.
addObject() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Create an object, and place it on top of the stack.
addObject(K) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Create an object using the factory or other implementation dependent mechanism, passivate it, and then place it in the idle object pool.
addObject() - 接口 中的方法org.apache.commons.pool.ObjectPool
Create an object using the factory or other implementation dependent mechanism, passivate it, and then place it in the idle object pool.

B

BaseKeyedObjectPool<K,V> - org.apache.commons.pool中的类
A simple base implementation of KeyedObjectPool.
BaseKeyedObjectPool() - 类 的构造器org.apache.commons.pool.BaseKeyedObjectPool
 
BaseKeyedPoolableObjectFactory<K,V> - org.apache.commons.pool中的类
A base implementation of KeyedPoolableObjectFactory.
BaseKeyedPoolableObjectFactory() - 类 的构造器org.apache.commons.pool.BaseKeyedPoolableObjectFactory
 
BaseObjectPool<T> - org.apache.commons.pool中的类
A simple base implementation of ObjectPool.
BaseObjectPool() - 类 的构造器org.apache.commons.pool.BaseObjectPool
 
BasePoolableObjectFactory<T> - org.apache.commons.pool中的类
A base implementation of PoolableObjectFactory.
BasePoolableObjectFactory() - 类 的构造器org.apache.commons.pool.BasePoolableObjectFactory
 
borrowObject(K) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Obtains an instance from this pool for the specified key.
borrowObject() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Obtains an instance from the pool.
borrowObject(K) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Borrows an object from the keyed pool associated with the given key.
borrowObject() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Borrows an object from the pool.
borrowObject() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Borrow an object from the pool.
borrowObject(K) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Borrows an object with the given key.
borrowObject() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Borrows an object from the pool.
borrowObject(K) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Obtains an instance from this pool for the specified key.
borrowObject() - 接口 中的方法org.apache.commons.pool.ObjectPool
Obtains an instance from this pool.

C

checkedPool(ObjectPool<T>, Class<T>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Wraps an ObjectPool and dynamically checks the type of objects borrowed and returned to the pool.
checkedPool(KeyedObjectPool<K, V>, Class<V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Wraps a KeyedObjectPool and dynamically checks the type of objects borrowed and returned to the keyedPool.
checkMinIdle(ObjectPool<T>, int, long) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Periodically check the idle object count for the pool.
checkMinIdle(KeyedObjectPool<K, V>, K, int, long) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Periodically check the idle object count for the key in the keyedPool.
checkMinIdle(KeyedObjectPool<K, V>, Collection<? extends K>, int, long) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Periodically check the idle object count for each key in the Collection keys in the keyedPool.
checkRethrow(Throwable) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Should the supplied Throwable be re-thrown (eg if it is an instance of one of the Throwables that should never be swallowed).
clear() - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
clear(K) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
clear() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Not supported in this base implementation.
clear() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Clears any objects sitting idle in the pool by removing them from the idle instance pool and then invoking the configured PoolableObjectFactory's KeyedPoolableObjectFactory.destroyObject(Object, Object) method on each idle instance.
clear(K) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Clears the specified pool, removing all pooled instances corresponding to the given key.
clear() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Clears any objects sitting idle in the pool by removing them from the idle instance pool and then invoking the configured PoolableObjectFactory.destroyObject(Object) method on each idle instance.
clear() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Clears any objects sitting idle in the pool.
clear() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Clears the pool, removing all pooled instances.
clear(K) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Clears the specified pool, removing all pooled instances corresponding to the given key.
clear() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Clears any objects sitting idle in the pool.
clear() - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Clears the pool, removing all pooled instances (optional operation).
clear(K) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Clears the specified pool, removing all pooled instances corresponding to the given key (optional operation).
clear() - 接口 中的方法org.apache.commons.pool.ObjectPool
Clears any objects sitting idle in the pool, releasing any associated resources (optional operation).
clearOldest() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Clears oldest 15% of objects in pool.
close() - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Close this pool.
close() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Close this pool.
close() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Closes the keyed object pool.
close() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Closes the pool.
close() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Close this pool, and free any resources associated with it.
close() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Close this pool, and free any resources associated with it.
close() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Close this pool, and free any resources associated with it.
close() - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Close this pool, and free any resources associated with it.
close() - 接口 中的方法org.apache.commons.pool.ObjectPool
Close this pool, and free any resources associated with it.
createPool() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPool with the currently configured properties.
createPool() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
Create and return a new ObjectPool.
createPool() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a StackKeyedObjectPool with current property settings.
createPool() - 类 中的方法org.apache.commons.pool.impl.StackObjectPoolFactory
Create a StackObjectPool.
createPool() - 接口 中的方法org.apache.commons.pool.KeyedObjectPoolFactory
Create a new KeyedObjectPool.
createPool() - 接口 中的方法org.apache.commons.pool.ObjectPoolFactory
Create and return a new ObjectPool.

D

DEFAULT_LIFO - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default LIFO status.
DEFAULT_LIFO - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default LIFO status.
DEFAULT_MAX_ACTIVE - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default cap on the total number of active instances (per key) from the pool.
DEFAULT_MAX_ACTIVE - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default cap on the total number of active instances from the pool.
DEFAULT_MAX_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default cap on the number of idle instances (per key) in the pool.
DEFAULT_MAX_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default cap on the number of "sleeping" instances in the pool.
DEFAULT_MAX_TOTAL - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default cap on the the overall maximum number of objects that can exist at one time.
DEFAULT_MAX_WAIT - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default maximum amount of time (in milliseconds) the GenericKeyedObjectPool.borrowObject(K) method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK.
DEFAULT_MAX_WAIT - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default maximum amount of time (in milliseconds) the GenericObjectPool.borrowObject() method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericObjectPool.WHEN_EXHAUSTED_BLOCK.
DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
DEFAULT_MIN_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default minimum level of idle objects in the pool.
DEFAULT_MIN_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default minimum number of "sleeping" instances in the pool before before the evictor thread (if active) spawns new objects.
DEFAULT_NUM_TESTS_PER_EVICTION_RUN - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default number of objects to examine per run in the idle object evictor.
DEFAULT_NUM_TESTS_PER_EVICTION_RUN - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default number of objects to examine per run in the idle object evictor.
DEFAULT_SOFT_MIN_EVICTABLE_IDLE_TIME_MILLIS - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
DEFAULT_TEST_ON_BORROW - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default "test on borrow" value.
DEFAULT_TEST_ON_BORROW - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default "test on borrow" value.
DEFAULT_TEST_ON_RETURN - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default "test on return" value.
DEFAULT_TEST_ON_RETURN - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default "test on return" value.
DEFAULT_TEST_WHILE_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default "test while idle" value.
DEFAULT_TEST_WHILE_IDLE - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default "test while idle" value.
DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default "time between eviction runs" value.
DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default "time between eviction runs" value.
DEFAULT_WHEN_EXHAUSTED_ACTION - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
The default "when exhausted action" for the pool.
DEFAULT_WHEN_EXHAUSTED_ACTION - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
The default "when exhausted action" for the pool.
destroyObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedPoolableObjectFactory
Destroy an instance no longer needed by the pool.
destroyObject(T) - 类 中的方法org.apache.commons.pool.BasePoolableObjectFactory
No-op.
destroyObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedPoolableObjectFactory
Destroy an instance no longer needed by the pool.
destroyObject(T) - 接口 中的方法org.apache.commons.pool.PoolableObjectFactory
Destroys an instance no longer needed by the pool.

E

erodingPool(ObjectPool<T>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a pool that adaptively decreases it's size when idle objects are no longer needed.
erodingPool(ObjectPool<T>, float) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a pool that adaptively decreases it's size when idle objects are no longer needed.
erodingPool(KeyedObjectPool<K, V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a pool that adaptively decreases it's size when idle objects are no longer needed.
erodingPool(KeyedObjectPool<K, V>, float) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a pool that adaptively decreases it's size when idle objects are no longer needed.
erodingPool(KeyedObjectPool<K, V>, float, boolean) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a pool that adaptively decreases it's size when idle objects are no longer needed.
evict() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Perform numTests idle object eviction tests, evicting examined objects that meet the criteria for eviction.
evict() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Perform numTests idle object eviction tests, evicting examined objects that meet the criteria for eviction.

G

GenericKeyedObjectPool<K,V> - org.apache.commons.pool.impl中的类
A configurable KeyedObjectPool implementation.
GenericKeyedObjectPool() - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool with no factory.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, GenericKeyedObjectPool.Config) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, int, boolean, boolean, long, int, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool
Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool.Config - org.apache.commons.pool.impl中的类
A simple "struct" encapsulating the configuration information for a GenericKeyedObjectPool.
GenericKeyedObjectPool.Config() - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
GenericKeyedObjectPoolFactory<K,V> - org.apache.commons.pool.impl中的类
A factory for creating GenericKeyedObjectPool instances.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, GenericKeyedObjectPool.Config) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, byte, long, int, int, int, boolean, boolean, long, int, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
Create a new GenericKeyedObjectPoolFactory.
GenericObjectPool<T> - org.apache.commons.pool.impl中的类
A configurable ObjectPool implementation.
GenericObjectPool() - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool with default properties.
GenericObjectPool(PoolableObjectFactory<T>) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified factory.
GenericObjectPool(PoolableObjectFactory<T>, GenericObjectPool.Config) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean, long) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool
Create a new GenericObjectPool using the specified values.
GenericObjectPool.Config - org.apache.commons.pool.impl中的类
A simple "struct" encapsulating the configuration information for a GenericObjectPool.
GenericObjectPool.Config() - 类 的构造器org.apache.commons.pool.impl.GenericObjectPool.Config
 
GenericObjectPoolFactory<T> - org.apache.commons.pool.impl中的类
A factory for creating GenericObjectPool instances.
GenericObjectPoolFactory(PoolableObjectFactory<T>) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, GenericObjectPool.Config) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int, boolean, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean, long) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
GenericObjectPoolFactory(PoolableObjectFactory<T>, int, byte, long, int, int, boolean, boolean, long, int, long, boolean, long, boolean) - 类 的构造器org.apache.commons.pool.impl.GenericObjectPoolFactory
Create a new GenericObjectPoolFactory.
getActiveCount() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getFactory() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getFactory() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getFactory() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Returns the PoolableObjectFactory used by this pool to create and manage object instances.
getFactory() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getFactory() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Returns the KeyedPoolableObjectFactory used by StackKeyedObjectPools created by this factory
getFactory() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Returns the PoolableObjectFactory used by this pool to create and manage object instances.
getFactory() - 类 中的方法org.apache.commons.pool.impl.StackObjectPoolFactory
Returns the factory used by created pools.
getInitCapacity() - 类 中的方法org.apache.commons.pool.impl.StackObjectPoolFactory
Returns the initial capacity of created pools.
getInitialCapacity() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Returns the initial capacity of StackKeyedObjectPools created by this factory.
getInitSleepingCapacity() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getLifo() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Whether or not the idle object pools act as LIFO queues.
getLifo() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getLifo() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Whether or not the idle object pool acts as a LIFO queue.
getLifo() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getMaxActive() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the cap on the number of object instances allocated by the pool (checked out or idle), per key.
getMaxActive() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMaxActive() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the maximum number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time.
getMaxActive() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getMaxIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the cap on the number of "idle" instances per key.
getMaxIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMaxIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the cap on the number of "idle" instances in the pool.
getMaxIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getMaxSleeping() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getMaxSleeping() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Returns the maximum number of idle instances in each keyed pool for StackKeyedObjectPools created by this factory
getMaxSleeping() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Returns the maximum number of idle instances in the pool.
getMaxSleeping() - 类 中的方法org.apache.commons.pool.impl.StackObjectPoolFactory
Returns the maxIdle setting for created pools.
getMaxTotal() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the overall maximum number of objects (across pools) that can exist at one time.
getMaxTotal() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMaxWait() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the maximum amount of time (in milliseconds) the GenericKeyedObjectPool.borrowObject(K) method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK.
getMaxWait() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMaxWait() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the maximum amount of time (in milliseconds) the GenericObjectPool.borrowObject() method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericObjectPool.WHEN_EXHAUSTED_BLOCK.
getMaxWait() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).
getMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).
getMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getMinIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the minimum number of idle objects to maintain in each of the keyed pools.
getMinIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getMinIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the minimum number of objects allowed in the pool before the evictor thread (if active) spawns new objects.
getMinIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getNumActive(K) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
getNumActive() - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
getNumActive() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Not supported in this base implementation.
getNumActive() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the total number of instances current borrowed from this pool but not yet returned.
getNumActive(Object) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the number of instances currently borrowed from but not yet returned to the pool corresponding to the given key.
getNumActive() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Return the number of instances currently borrowed from this pool.
getNumActive() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Return the number of instances currently borrowed from this pool.
getNumActive() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns the total number of instances current borrowed from this pool but not yet returned.
getNumActive(K) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns the number of instances currently borrowed from but not yet returned to the pool corresponding to the given key.
getNumActive() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Return the number of instances currently borrowed from this pool.
getNumActive(K) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Returns the number of instances currently borrowed from but not yet returned to the pool corresponding to the given key (optional operation).
getNumActive() - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Returns the total number of instances current borrowed from this pool but not yet returned (optional operation).
getNumActive() - 接口 中的方法org.apache.commons.pool.ObjectPool
Return the number of instances currently borrowed from this pool (optional operation).
getNumIdle(K) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
getNumIdle() - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Not supported in this base implementation.
getNumIdle() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Not supported in this base implementation.
getNumIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the total number of instances currently idle in this pool.
getNumIdle(Object) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the number of instances corresponding to the given key currently idle in this pool.
getNumIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Return the number of instances currently idle in this pool.
getNumIdle() - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Returns an approximation not less than the of the number of idle instances in the pool.
getNumIdle() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns the total number of instances currently idle in this pool.
getNumIdle(K) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns the number of instances corresponding to the given key currently idle in this pool.
getNumIdle() - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Return the number of instances currently idle in this pool.
getNumIdle(K) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Returns the number of instances corresponding to the given key currently idle in this pool (optional operation).
getNumIdle() - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Returns the total number of instances currently idle in this pool (optional operation).
getNumIdle() - 接口 中的方法org.apache.commons.pool.ObjectPool
Return the number of instances currently idle in this pool (optional operation).
getNumTestsPerEvictionRun() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the max number of objects to examine during each run of the idle object evictor thread (if any).
getNumTestsPerEvictionRun() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getNumTestsPerEvictionRun() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the max number of objects to examine during each run of the idle object evictor thread (if any).
getNumTestsPerEvictionRun() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getPools() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getSoftMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any), with the extra condition that at least "minIdle" amount of object remain in the pool.
getSoftMinEvictableIdleTimeMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getTestOnBorrow() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated before being returned by the GenericKeyedObjectPool.borrowObject(K) method.
getTestOnBorrow() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getTestOnBorrow() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated before being returned by the GenericObjectPool.borrowObject() method.
getTestOnBorrow() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getTestOnReturn() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated before being returned to the pool within the GenericKeyedObjectPool.returnObject(K, V).
getTestOnReturn() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getTestOnReturn() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated before being returned to the pool within the GenericObjectPool.returnObject(T).
getTestOnReturn() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getTestWhileIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated by the idle object evictor (if any).
getTestWhileIdle() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getTestWhileIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated by the idle object evictor (if any).
getTestWhileIdle() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getTimeBetweenEvictionRunsMillis() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
getTimeBetweenEvictionRunsMillis() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getTimeBetweenEvictionRunsMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
getTimeBetweenEvictionRunsMillis() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 
getTotActive() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getTotIdle() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
 
getWhenExhaustedAction() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns the action to take when the GenericKeyedObjectPool.borrowObject(K) method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached).
getWhenExhaustedAction() - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
 
getWhenExhaustedAction() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns the action to take when the GenericObjectPool.borrowObject() method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached).
getWhenExhaustedAction() - 类 中的方法org.apache.commons.pool.impl.GenericObjectPoolFactory
 

I

invalidateObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Invalidates an object from the pool.
invalidateObject(T) - 类 中的方法org.apache.commons.pool.BaseObjectPool
Invalidates an object from the pool.
invalidateObject(K, V) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Invalidates an object from the pool.
invalidateObject(T) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Invalidates an object from the pool.
invalidateObject(T) - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Invalidates an object from the pool.
invalidateObject(K, V) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Invalidates an object from the pool.
invalidateObject(T) - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Invalidates an object from the pool.
invalidateObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Invalidates an object from the pool.
invalidateObject(T) - 接口 中的方法org.apache.commons.pool.ObjectPool
Invalidates an object from the pool.
isClosed() - 类 中的方法org.apache.commons.pool.BaseObjectPool
Has this pool instance been closed.

K

KeyedObjectPool<K,V> - org.apache.commons.pool中的接口
A "keyed" pooling interface.
KeyedObjectPoolFactory<K,V> - org.apache.commons.pool中的接口
A factory for creating KeyedObjectPools.
KeyedPoolableObjectFactory<K,V> - org.apache.commons.pool中的接口
An interface defining life-cycle methods for instances to be served by a KeyedObjectPool.

L

lifo - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
lifo - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 

M

makeObject(K) - 类 中的方法org.apache.commons.pool.BaseKeyedPoolableObjectFactory
Create an instance that can be served by the pool.
makeObject() - 类 中的方法org.apache.commons.pool.BasePoolableObjectFactory
Creates an instance that can be served by the pool.
makeObject(K) - 接口 中的方法org.apache.commons.pool.KeyedPoolableObjectFactory
Create an instance that can be served by the pool.
makeObject() - 接口 中的方法org.apache.commons.pool.PoolableObjectFactory
Creates an instance that can be served by the pool.
maxActive - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
maxActive - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
maxIdle - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
maxIdle - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
maxTotal - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
maxWait - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
maxWait - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
minEvictableIdleTimeMillis - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
minEvictableIdleTimeMillis - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
minIdle - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
minIdle - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 

N

numTestsPerEvictionRun - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
numTestsPerEvictionRun - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 

O

ObjectPool<T> - org.apache.commons.pool中的接口
A pooling interface.
ObjectPoolFactory<T> - org.apache.commons.pool中的接口
A factory interface for creating ObjectPools.
org.apache.commons.pool - 程序包 org.apache.commons.pool
Object pooling API.
org.apache.commons.pool.impl - 程序包 org.apache.commons.pool.impl
Object pooling API implementations.

P

passivateObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedPoolableObjectFactory
Uninitialize an instance to be returned to the idle object pool.
passivateObject(T) - 类 中的方法org.apache.commons.pool.BasePoolableObjectFactory
No-op.
passivateObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedPoolableObjectFactory
Uninitialize an instance to be returned to the idle object pool.
passivateObject(T) - 接口 中的方法org.apache.commons.pool.PoolableObjectFactory
Uninitialize an instance to be returned to the idle object pool.
PoolableObjectFactory<T> - org.apache.commons.pool中的接口
An interface defining life-cycle methods for instances to be served by an ObjectPool.
PoolUtils - org.apache.commons.pool中的类
This class consists exclusively of static methods that operate on or return ObjectPool or KeyedObjectPool related interfaces.
PoolUtils() - 类 的构造器org.apache.commons.pool.PoolUtils
PoolUtils instances should NOT be constructed in standard programming.
prefill(ObjectPool<T>, int) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Call addObject() on pool count number of times.
prefill(KeyedObjectPool<K, V>, K, int) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Call addObject(Object) on keyedPool with key count number of times.
prefill(KeyedObjectPool<K, V>, Collection<? extends K>, int) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Call addObject(Object) on keyedPool with each key in keys for count number of times.
preparePool(K, boolean) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Registers a key for pool control.

R

returnObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedObjectPool
Return an instance to the pool.
returnObject(T) - 类 中的方法org.apache.commons.pool.BaseObjectPool
Returns an instance to the pool.
returnObject(K, V) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Returns an object to a keyed pool.
returnObject(T) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Returns an object instance to the pool.
returnObject(T) - 类 中的方法org.apache.commons.pool.impl.SoftReferenceObjectPool
Returns an instance to the pool after successful validation and passivation.
returnObject(K, V) - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns obj to the pool under key.
returnObject(T) - 类 中的方法org.apache.commons.pool.impl.StackObjectPool
Returns an instance to the pool, pushing it on top of the idle instance stack after successful validation and passivation.
returnObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedObjectPool
Return an instance to the pool.
returnObject(T) - 接口 中的方法org.apache.commons.pool.ObjectPool
Return an instance to the pool.

S

setConfig(GenericKeyedObjectPool.Config) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the configuration.
setConfig(GenericObjectPool.Config) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets my configuration.
setLifo(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the LIFO property of the pools.
setLifo(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the LIFO property of the pool.
setMaxActive(int) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the cap on the number of object instances managed by the pool per key.
setMaxActive(int) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the cap on the number of objects that can be allocated by the pool (checked out to clients, or idle awaiting checkout) at a given time.
setMaxIdle(int) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the cap on the number of "idle" instances in the pool.
setMaxIdle(int) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the cap on the number of "idle" instances in the pool.
setMaxTotal(int) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the cap on the total number of instances from all pools combined.
setMaxWait(long) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the maximum amount of time (in milliseconds) the GenericKeyedObjectPool.borrowObject(K) method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK.
setMaxWait(long) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the maximum amount of time (in milliseconds) the GenericObjectPool.borrowObject() method should block before throwing an exception when the pool is exhausted and the "when exhausted" action is GenericObjectPool.WHEN_EXHAUSTED_BLOCK.
setMinEvictableIdleTimeMillis(long) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).
setMinEvictableIdleTimeMillis(long) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any).
setMinIdle(int) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the minimum number of idle objects to maintain in each of the keyed pools.
setMinIdle(int) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the minimum number of objects allowed in the pool before the evictor thread (if active) spawns new objects.
setNumTestsPerEvictionRun(int) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the max number of objects to examine during each run of the idle object evictor thread (if any).
setNumTestsPerEvictionRun(int) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the max number of objects to examine during each run of the idle object evictor thread (if any).
setSoftMinEvictableIdleTimeMillis(long) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the minimum amount of time an object may sit idle in the pool before it is eligible for eviction by the idle object evictor (if any), with the extra condition that at least "minIdle" object instances remain in the pool.
setTestOnBorrow(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated before being returned by the GenericKeyedObjectPool.borrowObject(K) method.
setTestOnBorrow(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated before being returned by the GenericObjectPool.borrowObject() method.
setTestOnReturn(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated before being returned to the pool within the GenericKeyedObjectPool.returnObject(K, V).
setTestOnReturn(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated before being returned to the pool within the GenericObjectPool.returnObject(T).
setTestWhileIdle(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
When true, objects will be validated by the idle object evictor (if any).
setTestWhileIdle(boolean) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
When true, objects will be validated by the idle object evictor (if any).
setTimeBetweenEvictionRunsMillis(long) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the number of milliseconds to sleep between runs of the idle object evictor thread.
setTimeBetweenEvictionRunsMillis(long) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the number of milliseconds to sleep between runs of the idle object evictor thread.
setWhenExhaustedAction(byte) - 类 中的方法org.apache.commons.pool.impl.GenericKeyedObjectPool
Sets the action to take when the GenericKeyedObjectPool.borrowObject(K) method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached).
setWhenExhaustedAction(byte) - 类 中的方法org.apache.commons.pool.impl.GenericObjectPool
Sets the action to take when the GenericObjectPool.borrowObject() method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached).
softMinEvictableIdleTimeMillis - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
SoftReferenceObjectPool<T> - org.apache.commons.pool.impl中的类
A SoftReference based ObjectPool.
SoftReferenceObjectPool(PoolableObjectFactory<T>) - 类 的构造器org.apache.commons.pool.impl.SoftReferenceObjectPool
Create a SoftReferenceObjectPool with the specified factory.
StackKeyedObjectPool<K,V> - org.apache.commons.pool.impl中的类
A simple, Stack-based KeyedObjectPool implementation.
StackKeyedObjectPool() - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new pool using no factory.
StackKeyedObjectPool(int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new pool using no factory.
StackKeyedObjectPool(int, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new pool using no factory.
StackKeyedObjectPool(KeyedPoolableObjectFactory<K, V>) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPool(KeyedPoolableObjectFactory<K, V>, int, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPool
Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPoolFactory<K,V> - org.apache.commons.pool.impl中的类
A factory for creating StackKeyedObjectPool instances.
StackKeyedObjectPoolFactory() - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackKeyedObjectPoolFactory(int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackKeyedObjectPoolFactory(int, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory<K, V>, int, int) - 类 的构造器org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
Create a new StackKeyedObjectPoolFactory.
StackObjectPool<T> - org.apache.commons.pool.impl中的类
A simple, Stack-based ObjectPool implementation.
StackObjectPool(PoolableObjectFactory<T>) - 类 的构造器org.apache.commons.pool.impl.StackObjectPool
Create a new StackObjectPool using the specified factory to create new instances.
StackObjectPool(PoolableObjectFactory<T>, int) - 类 的构造器org.apache.commons.pool.impl.StackObjectPool
Create a new SimpleObjectPool using the specified factory to create new instances, capping the number of "sleeping" instances to maxIdle.
StackObjectPool(PoolableObjectFactory<T>, int, int) - 类 的构造器org.apache.commons.pool.impl.StackObjectPool
Create a new StackObjectPool using the specified factory to create new instances, capping the number of "sleeping" instances to maxIdle, and initially allocating a container capable of containing at least initIdleCapacity instances.
StackObjectPoolFactory<T> - org.apache.commons.pool.impl中的类
A factory for creating StackObjectPool instances.
StackObjectPoolFactory(PoolableObjectFactory<T>) - 类 的构造器org.apache.commons.pool.impl.StackObjectPoolFactory
Create a new StackObjectPoolFactory.
StackObjectPoolFactory(PoolableObjectFactory<T>, int) - 类 的构造器org.apache.commons.pool.impl.StackObjectPoolFactory
Create a new StackObjectPoolFactory.
StackObjectPoolFactory(PoolableObjectFactory<T>, int, int) - 类 的构造器org.apache.commons.pool.impl.StackObjectPoolFactory
Create a new StackObjectPoolFactory.
synchronizedPool(ObjectPool<T>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a synchronized (thread-safe) ObjectPool backed by the specified ObjectPool.
synchronizedPool(KeyedObjectPool<K, V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a synchronized (thread-safe) KeyedObjectPool backed by the specified KeyedObjectPool.
synchronizedPoolableFactory(PoolableObjectFactory<T>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a synchronized (thread-safe) PoolableObjectFactory backed by the specified PoolableObjectFactory.
synchronizedPoolableFactory(KeyedPoolableObjectFactory<K, V>) - 类 中的静态方法org.apache.commons.pool.PoolUtils
Returns a synchronized (thread-safe) KeyedPoolableObjectFactory backed by the specified KeyedPoolableObjectFactory.

T

testOnBorrow - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
testOnBorrow - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
testOnReturn - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
testOnReturn - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
testWhileIdle - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
testWhileIdle - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
timeBetweenEvictionRunsMillis - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
timeBetweenEvictionRunsMillis - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
toString() - 类 中的方法org.apache.commons.pool.impl.StackKeyedObjectPool
Returns a string representation of this StackKeyedObjectPool, including the number of pools, the keys and the size of each keyed pool.

V

validateObject(K, V) - 类 中的方法org.apache.commons.pool.BaseKeyedPoolableObjectFactory
Ensures that the instance is safe to be returned by the pool.
validateObject(T) - 类 中的方法org.apache.commons.pool.BasePoolableObjectFactory
This implementation always returns true.
validateObject(K, V) - 接口 中的方法org.apache.commons.pool.KeyedPoolableObjectFactory
Ensures that the instance is safe to be returned by the pool.
validateObject(T) - 接口 中的方法org.apache.commons.pool.PoolableObjectFactory
Ensures that the instance is safe to be returned by the pool.

W

WHEN_EXHAUSTED_BLOCK - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericKeyedObjectPool.borrowObject(K) method should block until a new object is available, or the maximum wait time has been reached.
WHEN_EXHAUSTED_BLOCK - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericObjectPool.borrowObject() method should block until a new object is available, or the maximum wait time has been reached.
WHEN_EXHAUSTED_FAIL - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericKeyedObjectPool.borrowObject(K) method should fail, throwing a NoSuchElementException.
WHEN_EXHAUSTED_FAIL - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericObjectPool.borrowObject() method should fail, throwing a NoSuchElementException.
WHEN_EXHAUSTED_GROW - 类 中的静态变量org.apache.commons.pool.impl.GenericKeyedObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericKeyedObjectPool.borrowObject(K) method should simply create a new object anyway.
WHEN_EXHAUSTED_GROW - 类 中的静态变量org.apache.commons.pool.impl.GenericObjectPool
A "when exhausted action" type indicating that when the pool is exhausted (i.e., the maximum number of active objects has been reached), the GenericObjectPool.borrowObject() method should simply create a new object anyway.
whenExhaustedAction - 类 中的变量org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
 
whenExhaustedAction - 类 中的变量org.apache.commons.pool.impl.GenericObjectPool.Config
 
A B C D E G I K L M N O P R S T V W 

Copyright © 2001-2012 Apache Software Foundation. Documenation generated March 9 2016.