|
|||||||||
| Home >> All >> org >> apache >> commons >> pool >> [ impl overview ] | PREV NEXT | ||||||||
A
- activateObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.SimpleFactory
- activateObject(Object) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- activateObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
- activateObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.SmallPoolableObjectFactory
- activateObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool.SimpleFactory
- activateObject(Object) - Method in class org.apache.commons.pool.impl.TestStackObjectPool.SimpleFactory
- addObject(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- addObject() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Create an object, and place it into the pool.
- addObject() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- Create an object, and place it into the pool.
- addObject(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- addObject() - Method in class org.apache.commons.pool.impl.StackObjectPool
- Create an object, and place it into the pool.
- addObjectToPool(Object, boolean) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- assertConfiguration(GenericObjectPool.Config, GenericObjectPool) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool
B
- borrowObject(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- borrowObject() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- borrowObject() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- borrowObject(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- borrowObject() - Method in class org.apache.commons.pool.impl.StackObjectPool
- buffer - Variable in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
C
- calculateDeficit() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- cancel() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Evictor
- cancel() - Method in class org.apache.commons.pool.impl.GenericObjectPool.Evictor
- clear() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- clear(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- clear() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- clear() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- clear() - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- clear(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- clear() - Method in class org.apache.commons.pool.impl.StackObjectPool
- close() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- close() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- close() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- close() - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- close() - Method in class org.apache.commons.pool.impl.StackObjectPool
- complete() - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.TestThread
- complete() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.TestThread
- counter - Variable in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.SimpleFactory
- counter - Variable in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
- counter - Variable in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.SmallPoolableObjectFactory
- counter - Variable in class org.apache.commons.pool.impl.TestStackObjectPool.SimpleFactory
- createPool() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- createPool() - Method in class org.apache.commons.pool.impl.GenericObjectPoolFactory
- createPool() - Method in class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- createPool() - Method in class org.apache.commons.pool.impl.StackObjectPoolFactory
D
- DEFAULT_INIT_SLEEPING_CAPACITY - Static variable in class org.apache.commons.pool.impl.StackKeyedObjectPool
- The default initial size of the pool (this specifies the size of the container, it does not cause the pool to be pre-populated.)
- DEFAULT_INIT_SLEEPING_CAPACITY - Static variable in class org.apache.commons.pool.impl.StackObjectPool
- The default initial size of the pool (this specifies the size of the container, it does not cause the pool to be pre-populated.)
- DEFAULT_MAX_ACTIVE - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default cap on the total number of active instances from the pool (per key).
- DEFAULT_MAX_ACTIVE - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default cap on the total number of active instances from the pool.
- DEFAULT_MAX_IDLE - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default cap on the number of idle instances in the pool (per key).
- DEFAULT_MAX_IDLE - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default cap on the number of "sleeping" instances in the pool.
- DEFAULT_MAX_SLEEPING - Static variable in class org.apache.commons.pool.impl.StackKeyedObjectPool
- The default cap on the number of "sleeping" instances in the pool.
- DEFAULT_MAX_SLEEPING - Static variable in class org.apache.commons.pool.impl.StackObjectPool
- The default cap on the number of "sleeping" instances in the pool.
- DEFAULT_MAX_TOTAL - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default cap on the the maximum number of objects that can exists at one time.
- DEFAULT_MAX_WAIT - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default maximum amount of time (in millis) the
GenericKeyedObjectPool.borrowObject(java.lang.Object)55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK55 . - DEFAULT_MAX_WAIT - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default maximum amount of time (in millis) the
GenericObjectPool.borrowObject()55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericObjectPool.WHEN_EXHAUSTED_BLOCK55 . - DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default value for
GenericKeyedObjectPool.getMinEvictableIdleTimeMillis()55 . - DEFAULT_MIN_EVICTABLE_IDLE_TIME_MILLIS - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default value for
GenericObjectPool.getMinEvictableIdleTimeMillis()55 . - DEFAULT_MIN_IDLE - Static variable in class 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 - Static variable in class 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 - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default number of objects to examine per run in the idle object evictor.
- DEFAULT_TEST_ON_BORROW - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default "test on borrow" value.
- DEFAULT_TEST_ON_BORROW - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default "test on borrow" value.
- DEFAULT_TEST_ON_RETURN - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default "test on return" value.
- DEFAULT_TEST_ON_RETURN - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default "test on return" value.
- DEFAULT_TEST_WHILE_IDLE - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default "test while idle" value.
- DEFAULT_TEST_WHILE_IDLE - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default "test while idle" value.
- DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default "time between eviction runs" value.
- DEFAULT_TIME_BETWEEN_EVICTION_RUNS_MILLIS - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default "time between eviction runs" value.
- DEFAULT_WHEN_EXHAUSTED_ACTION - Static variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- The default "when exhausted action" for the pool.
- DEFAULT_WHEN_EXHAUSTED_ACTION - Static variable in class org.apache.commons.pool.impl.GenericObjectPool
- The default "when exhausted action" for the pool.
- debugInfo() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- debugInfo() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- decrementActiveCount(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- decrementActiveCount(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- destroyObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.SimpleFactory
- destroyObject(Object) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- destroyObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
- destroyObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.SmallPoolableObjectFactory
- destroyObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool.SimpleFactory
- destroyObject(Object) - Method in class org.apache.commons.pool.impl.TestStackObjectPool.SimpleFactory
- destroyStack(Object, Stack) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
E
- enableValidation - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- ensureMinIdle() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Check to see if we are below our minimum number of objects if so enough to bring us back to our minimum.
- evenValid - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- evict() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- evict() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- exceptionOnActivate - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- exceptionOnPassivate - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
F
- failed() - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.TestThread
- failed() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.TestThread
G
- GenericKeyedObjectPool - class org.apache.commons.pool.impl.GenericKeyedObjectPool.
- A configurable org.apache.commons.pool.KeyedObjectPool implementation.
- GenericKeyedObjectPool() - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool..
- GenericKeyedObjectPool(KeyedPoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, GenericKeyedObjectPool.Config) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long, int) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long, int, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool(KeyedPoolableObjectFactory, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Create a new GenericKeyedObjectPool using the specified values.
- GenericKeyedObjectPool.Config - class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config.
- A simple "struct" encapsulating the configuration information for a GenericKeyedObjectPool.
- GenericKeyedObjectPool.Config() - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- GenericKeyedObjectPool.Evictor - class org.apache.commons.pool.impl.GenericKeyedObjectPool.Evictor.
- The idle object evictor thread.
- GenericKeyedObjectPool.Evictor(long) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool.Evictor
- GenericKeyedObjectPool.ObjectTimestampPair - class org.apache.commons.pool.impl.GenericKeyedObjectPool.ObjectTimestampPair.
- A simple "struct" encapsulating an object instance and a timestamp.
- GenericKeyedObjectPool.ObjectTimestampPair(Object) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool.ObjectTimestampPair
- GenericKeyedObjectPool.ObjectTimestampPair(Object, long) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPool.ObjectTimestampPair
- GenericKeyedObjectPoolFactory - class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory.
- A factory for creating GenericKeyedObjectPool instances.
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, GenericKeyedObjectPool.Config) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, int) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, int, int) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, int, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericKeyedObjectPoolFactory
- GenericObjectPool - class org.apache.commons.pool.impl.GenericObjectPool.
- A configurable org.apache.commons.pool.ObjectPool implementation.
- GenericObjectPool() - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool.
- GenericObjectPool(PoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, GenericObjectPool.Config) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long, int) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long, int, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool(PoolableObjectFactory, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool
- Create a new GenericObjectPool using the specified values.
- GenericObjectPool.Config - class org.apache.commons.pool.impl.GenericObjectPool.Config.
- A simple "struct" encapsulating the configuration information for a GenericObjectPool.
- GenericObjectPool.Config() - Constructor for class org.apache.commons.pool.impl.GenericObjectPool.Config
- GenericObjectPool.Evictor - class org.apache.commons.pool.impl.GenericObjectPool.Evictor.
- The idle object evictor thread.
- GenericObjectPool.Evictor(long) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool.Evictor
- GenericObjectPool.ObjectTimestampPair - class org.apache.commons.pool.impl.GenericObjectPool.ObjectTimestampPair.
- A simple "struct" encapsulating an object instance and a timestamp.
- GenericObjectPool.ObjectTimestampPair(Object) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool.ObjectTimestampPair
- GenericObjectPool.ObjectTimestampPair(Object, long) - Constructor for class org.apache.commons.pool.impl.GenericObjectPool.ObjectTimestampPair
- GenericObjectPoolFactory - class org.apache.commons.pool.impl.GenericObjectPoolFactory.
- A factory for creating GenericObjectPool instances.
- GenericObjectPoolFactory(PoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, GenericObjectPool.Config) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long, int) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long, int, boolean, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- GenericObjectPoolFactory(PoolableObjectFactory, int, byte, long, int, int, boolean, boolean, long, int, long, boolean) - Constructor for class org.apache.commons.pool.impl.GenericObjectPoolFactory
- getActiveCount(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getActiveCount(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- getMaxActive() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the cap on the number of active instances from my pool (per key).
- getMaxActive() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the cap on the total number of active instances from my pool.
- getMaxIdle() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the cap on the number of "idle" instances in the pool.
- getMaxIdle() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the cap on the number of "idle" instances in the pool.
- getMaxTotal() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the cap on the total number of instances from my pool.
- getMaxWait() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the maximum amount of time (in milliseconds) the
GenericKeyedObjectPool.borrowObject(java.lang.Object)55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK55 . - getMaxWait() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the maximum amount of time (in milliseconds) the
GenericObjectPool.borrowObject()55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericObjectPool.WHEN_EXHAUSTED_BLOCK55 . - getMinEvictableIdleTimeMillis() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the minimum amount of time an object may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
- getMinEvictableIdleTimeMillis() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the minimum amount of time an object may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
- getMinIdle() - Method in class 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.
- getNthObject(Object, int) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool
- getNthObject(int) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool
- getNthObject(int) - Method in class org.apache.commons.pool.impl.TestSoftReferenceObjectPool
- getNthObject(Object, int) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool
- getNthObject(int) - Method in class org.apache.commons.pool.impl.TestStackObjectPool
- getNumActive() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getNumActive(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getNumActive() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- getNumActive() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- getNumActive() - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- getNumActive(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- getNumActive() - Method in class org.apache.commons.pool.impl.StackObjectPool
- getNumIdle() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getNumIdle(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getNumIdle() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- getNumIdle() - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- Returns an approximation not less than the of the number of idle instances in the pool.
- getNumIdle() - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- getNumIdle(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- getNumIdle() - Method in class org.apache.commons.pool.impl.StackObjectPool
- getNumTests() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- getNumTests() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- getNumTestsPerEvictionRun() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the number of objects to examine during each run of the idle object evictor thread (if any).
- getNumTestsPerEvictionRun() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the number of objects to examine during each run of the idle object evictor thread (if any).
- getTestOnBorrow() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- When true, objects will be
validated 55
before being returned by the
GenericKeyedObjectPool.borrowObject(java.lang.Object)55 method. - getTestOnBorrow() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- When true, objects will be
validated 55
before being returned by the
GenericObjectPool.borrowObject()55 method. - getTestOnReturn() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- When true, objects will be
validated 55
before being returned to the pool within the
GenericKeyedObjectPool.returnObject(java.lang.Object, java.lang.Object)55 . - getTestOnReturn() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- When true, objects will be
validated 55
before being returned to the pool within the
GenericObjectPool.returnObject(java.lang.Object)55 . - getTestWhileIdle() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- When true, objects will be validated 55 by the idle object evictor (if any).
- getTestWhileIdle() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- When true, objects will be validated 55 by the idle object evictor (if any).
- getTimeBetweenEvictionRunsMillis() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
- getTimeBetweenEvictionRunsMillis() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the number of milliseconds to sleep between runs of the idle object evictor thread.
- getWhenExhaustedAction() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Returns the action to take when the
GenericKeyedObjectPool.borrowObject(java.lang.Object)55 method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached). - getWhenExhaustedAction() - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Returns the action to take when the
GenericObjectPool.borrowObject()55 method is invoked when the pool is exhausted (the maximum number of "active" objects has been reached).
I
- incrementActiveCount(Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- incrementActiveCount(Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- invalidateObject(Object, Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- invalidateObject(Object) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- invalidateObject(Object) - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- invalidateObject(Object, Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- invalidateObject(Object) - Method in class org.apache.commons.pool.impl.StackObjectPool
- isThrowExceptionOnActivate() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- isValidationEnabled() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
M
- main(String[]) - Static method in class org.apache.commons.pool.impl.TestAll
- makeCounter - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- makeEmptyPool(int) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool
- makeEmptyPool(int) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool
- makeEmptyPool(int) - Method in class org.apache.commons.pool.impl.TestSoftReferenceObjectPool
- makeEmptyPool(int) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool
- makeEmptyPool(int) - Method in class org.apache.commons.pool.impl.TestStackObjectPool
- makeKey(int) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool
- makeKey(int) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool
- makeObject(Object) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.SimpleFactory
- makeObject() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- makeObject() - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
- makeObject() - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.SmallPoolableObjectFactory
- makeObject(Object) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool.SimpleFactory
- makeObject() - Method in class org.apache.commons.pool.impl.TestStackObjectPool.SimpleFactory
- map - Variable in class org.apache.commons.pool.impl.TestStackKeyedObjectPool.SimpleFactory
- maxActive - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- maxActive - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
- maxIdle - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- maxIdle - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
- maxTotal - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- maxWait - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- maxWait - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
- minEvictableIdleTimeMillis - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- minEvictableIdleTimeMillis - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
- minIdle - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
N
- numTestsPerEvictionRun - Variable in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Config
- numTestsPerEvictionRun - Variable in class org.apache.commons.pool.impl.GenericObjectPool.Config
O
- oddValid - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- org.apache.commons.pool.impl - package org.apache.commons.pool.impl
- Object pooling API.
P
- passivateObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.SimpleFactory
- passivateObject(Object) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- passivateObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.LargePoolableObjectFactory
- passivateObject(Object) - Method in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory.SmallPoolableObjectFactory
- passivateObject(Object, Object) - Method in class org.apache.commons.pool.impl.TestStackKeyedObjectPool.SimpleFactory
- passivateObject(Object) - Method in class org.apache.commons.pool.impl.TestStackObjectPool.SimpleFactory
- pool - Variable in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool
- pool - Variable in class org.apache.commons.pool.impl.TestGenericObjectPool
- pool - Variable in class org.apache.commons.pool.impl.TestSoftRefOutOfMemory
- pool - Variable in class org.apache.commons.pool.impl.TestStackKeyedObjectPool
R
- returnObject(Object, Object) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- returnObject(Object) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- returnObject(Object) - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- returnObject(Object, Object) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- returnObject(Object) - Method in class org.apache.commons.pool.impl.StackObjectPool
- run() - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool.Evictor
- run() - Method in class org.apache.commons.pool.impl.GenericObjectPool.Evictor
- run() - Method in class org.apache.commons.pool.impl.TestGenericKeyedObjectPool.TestThread
- run() - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.TestThread
S
- SoftReferenceObjectPool - class org.apache.commons.pool.impl.SoftReferenceObjectPool.
- A SoftReference based org.apache.commons.pool.ObjectPool.
- SoftReferenceObjectPool() - Constructor for class org.apache.commons.pool.impl.SoftReferenceObjectPool
- SoftReferenceObjectPool(PoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.SoftReferenceObjectPool
- SoftReferenceObjectPool(PoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.SoftReferenceObjectPool
- StackKeyedObjectPool - class org.apache.commons.pool.impl.StackKeyedObjectPool.
- A simple, Stack-based org.apache.commons.pool.KeyedObjectPool implementation.
- StackKeyedObjectPool() - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new pool using no factory.
- StackKeyedObjectPool(int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new pool using no factory.
- StackKeyedObjectPool(int, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new pool using no factory.
- StackKeyedObjectPool(KeyedPoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
- StackKeyedObjectPool(KeyedPoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
- StackKeyedObjectPool(KeyedPoolableObjectFactory, int, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPool
- Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
- StackKeyedObjectPoolFactory - class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory.
- A factory for creating StackKeyedObjectPool instances.
- StackKeyedObjectPoolFactory() - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackKeyedObjectPoolFactory(int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackKeyedObjectPoolFactory(int, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackKeyedObjectPoolFactory(KeyedPoolableObjectFactory, int, int) - Constructor for class org.apache.commons.pool.impl.StackKeyedObjectPoolFactory
- StackObjectPool - class org.apache.commons.pool.impl.StackObjectPool.
- A simple, Stack-based org.apache.commons.pool.ObjectPool implementation.
- StackObjectPool() - Constructor for class org.apache.commons.pool.impl.StackObjectPool
- Create a new pool using no factory.
- StackObjectPool(int) - Constructor for class org.apache.commons.pool.impl.StackObjectPool
- Create a new pool using no factory.
- StackObjectPool(int, int) - Constructor for class org.apache.commons.pool.impl.StackObjectPool
- Create a new pool using no factory.
- StackObjectPool(PoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.StackObjectPool
- Create a new StackObjectPool using the specified factory to create new instances.
- StackObjectPool(PoolableObjectFactory, int) - Constructor for class 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 max
- StackObjectPool(PoolableObjectFactory, int, int) - Constructor for class 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 max, and initially allocating a container capable of containing at least init instances.
- StackObjectPoolFactory - class org.apache.commons.pool.impl.StackObjectPoolFactory.
- A factory for creating StackObjectPool instances.
- StackObjectPoolFactory() - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- StackObjectPoolFactory(int) - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- StackObjectPoolFactory(int, int) - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- StackObjectPoolFactory(PoolableObjectFactory) - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- StackObjectPoolFactory(PoolableObjectFactory, int) - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- StackObjectPoolFactory(PoolableObjectFactory, int, int) - Constructor for class org.apache.commons.pool.impl.StackObjectPoolFactory
- setConfig(GenericKeyedObjectPool.Config) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets my configuration.
- setConfig(GenericObjectPool.Config) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Sets my configuration.
- setEvenValid(boolean) - Method in class org.apache.commons.pool.impl.TestGenericObjectPool.SimpleFactory
- setFactory(KeyedPoolableObjectFactory) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- setFactory(PoolableObjectFactory) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- setFactory(PoolableObjectFactory) - Method in class org.apache.commons.pool.impl.SoftReferenceObjectPool
- setFactory(KeyedPoolableObjectFactory) - Method in class org.apache.commons.pool.impl.StackKeyedObjectPool
- setFactory(PoolableObjectFactory) - Method in class org.apache.commons.pool.impl.StackObjectPool
- setMaxActive(int) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets the cap on the number of active instances from my pool (per key).
- setMaxActive(int) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Sets the cap on the total number of active instances from my pool.
- setMaxIdle(int) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets the cap on the number of "idle" instances in the pool.
- setMaxIdle(int) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Sets the cap on the number of "idle" instances in the pool.
- setMaxTotal(int) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets the cap on the total number of instances from my pool.
- setMaxWait(long) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets the maximum amount of time (in milliseconds) the
GenericKeyedObjectPool.borrowObject(java.lang.Object)55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericKeyedObjectPool.WHEN_EXHAUSTED_BLOCK55 . - setMaxWait(long) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Sets the maximum amount of time (in milliseconds) the
GenericObjectPool.borrowObject()55 method should block before throwing an exception when the pool is exhausted and the "when exhausted" action 55 isGenericObjectPool.WHEN_EXHAUSTED_BLOCK55 . - setMinEvictableIdleTimeMillis(long) - Method in class org.apache.commons.pool.impl.GenericKeyedObjectPool
- Sets the minimum amount of time an object may sit idle in the pool before it is eligable for eviction by the idle object evictor (if any).
- setMinEvictableIdleTimeMillis(long) - Method in class org.apache.commons.pool.impl.GenericObjectPool
- Sets the minimum amount of time an object may sit idle in the pool before it is eligable