|
|||||||||
| Home >> All >> org >> apache >> commons >> [ pool overview ] | PREV NEXT | ||||||||
A
- activateObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- No-op.
- activateObject(Object) - Method in class org.apache.commons.pool.BasePoolableObjectFactory
- No-op.
- activateObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedPoolableObjectFactory
- Reinitialize an instance to be returned by the pool.
- activateObject(Object) - Method in interface org.apache.commons.pool.PoolableObjectFactory
- Reinitialize an instance to be returned by the pool.
- addObject(Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- addObject() - Method in class org.apache.commons.pool.BaseObjectPool
- Not supported in this base implementation.
- addObject(Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Create an object using my factory 55 or other implementation dependent mechanism, and place it into the pool.
- addObject() - Method in interface org.apache.commons.pool.ObjectPool
- Create an object using my factory 55 or other implementation dependent mechanism, and place it into the pool.
- assertOpen() - Method in class org.apache.commons.pool.BaseObjectPool
B
- BaseKeyedObjectPool - class org.apache.commons.pool.BaseKeyedObjectPool.
- A simple base impementation of ObjectPool.
- BaseKeyedObjectPool() - Constructor for class org.apache.commons.pool.BaseKeyedObjectPool
- BaseKeyedPoolableObjectFactory - class org.apache.commons.pool.BaseKeyedPoolableObjectFactory.
- A base implemenation of KeyedPoolableObjectFactory.
- BaseKeyedPoolableObjectFactory() - Constructor for class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- BaseObjectPool - class org.apache.commons.pool.BaseObjectPool.
- A simple base impementation of ObjectPool.
- BaseObjectPool() - Constructor for class org.apache.commons.pool.BaseObjectPool
- BasePoolableObjectFactory - class org.apache.commons.pool.BasePoolableObjectFactory.
- A base implemenation of PoolableObjectFactory.
- BasePoolableObjectFactory() - Constructor for class org.apache.commons.pool.BasePoolableObjectFactory
- borrowObject(Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- borrowObject() - Method in class org.apache.commons.pool.BaseObjectPool
- borrowObject(Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Obtain an instance from my pool for the specified key.
- borrowObject() - Method in interface org.apache.commons.pool.ObjectPool
- Obtain an instance from my pool.
C
- clear() - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- clear(Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- clear() - Method in class org.apache.commons.pool.BaseObjectPool
- Not supported in this base implementation.
- clear() - Method in interface org.apache.commons.pool.KeyedObjectPool
- Clears my pool, removing all pooled instances (optional operation).
- clear(Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Clears the specified pool, removing all pooled instances corresponding to the given key (optional operation).
- clear() - Method in interface org.apache.commons.pool.ObjectPool
- Clears any objects sitting idle in the pool, releasing any associated resources (optional operation).
- close() - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Does nothing this base implementation.
- close() - Method in class org.apache.commons.pool.BaseObjectPool
- close() - Method in interface org.apache.commons.pool.KeyedObjectPool
- Close this pool, and free any resources associated with it.
- close() - Method in interface org.apache.commons.pool.ObjectPool
- Close this pool, and free any resources associated with it.
- closed - Variable in class org.apache.commons.pool.BaseObjectPool
- createPool() - Method in interface org.apache.commons.pool.KeyedObjectPoolFactory
- Create a new KeyedObjectPool.
- createPool() - Method in interface org.apache.commons.pool.ObjectPoolFactory
- Create and return a new ObjectPool.
D
- destroyObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- No-op.
- destroyObject(Object) - Method in class org.apache.commons.pool.BasePoolableObjectFactory
- No-op.
- destroyObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedPoolableObjectFactory
- Destroy an instance no longer needed by the pool.
- destroyObject(Object) - Method in interface org.apache.commons.pool.PoolableObjectFactory
- Destroys an instance no longer needed by the pool.
G
- getNthObject(Object, int) - Method in class org.apache.commons.pool.TestKeyedObjectPool
- Return what we expect to be the nth object (zero indexed) created by the pool for the given key.
- getNthObject(int) - Method in class org.apache.commons.pool.TestObjectPool
- Return what we expect to be the nth object (zero indexed) created by the _pool.
- getNumActive(Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- getNumActive() - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- getNumActive() - Method in class org.apache.commons.pool.BaseObjectPool
- Not supported in this base implementation.
- getNumActive(Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Returns the number of instances currently borrowed from but not yet returned to my pool corresponding to the given key (optional operation).
- getNumActive() - Method in interface org.apache.commons.pool.KeyedObjectPool
- Returns the total number of instances current borrowed from my pool but not yet returned (optional operation).
- getNumActive() - Method in interface org.apache.commons.pool.ObjectPool
- Return the number of instances currently borrowed from my pool (optional operation).
- getNumIdle(Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- getNumIdle() - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- getNumIdle() - Method in class org.apache.commons.pool.BaseObjectPool
- Not supported in this base implementation.
- getNumIdle(Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Returns the number of instances corresponding to the given key currently idle in my pool (optional operation).
- getNumIdle() - Method in interface org.apache.commons.pool.KeyedObjectPool
- Returns the total number of instances currently idle in my pool (optional operation).
- getNumIdle() - Method in interface org.apache.commons.pool.ObjectPool
- Return the number of instances currently idle in my pool (optional operation).
I
- invalidateObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- invalidateObject(Object) - Method in class org.apache.commons.pool.BaseObjectPool
- invalidateObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Invalidates an object from the pool By contract, obj MUST have been obtained using borrowObject 55 or a related method as defined in an implementation or sub-interface using a key that is equivalent to the one used to borrow the Object in the first place.
- invalidateObject(Object) - Method in interface org.apache.commons.pool.ObjectPool
- Invalidates an object from the pool By contract, obj MUST have been obtained using borrowObject 55 or a related method as defined in an implementation or sub-interface.
- isClosed() - Method in class org.apache.commons.pool.BaseObjectPool
K
- KeyedObjectPool - interface org.apache.commons.pool.KeyedObjectPool.
- A "keyed" pooling interface.
- KeyedObjectPoolFactory - interface org.apache.commons.pool.KeyedObjectPoolFactory.
- A factory for creating KeyedObjectPools.
- KeyedPoolableObjectFactory - interface org.apache.commons.pool.KeyedPoolableObjectFactory.
- An interface defining life-cycle methods for instances to be served by a KeyedObjectPool.
M
- main(String[]) - Static method in class org.apache.commons.pool.TestAll
- makeEmptyPool(int) - Method in class org.apache.commons.pool.TestKeyedObjectPool
- Create an KeyedObjectPool instance that can contain at least mincapacity idle and active objects, or throw java.lang.IllegalArgumentException if such a pool cannot be created.
- makeEmptyPool(int) - Method in class org.apache.commons.pool.TestObjectPool
- Create an ObjectPool instance that can contain at least mincapacity idle and active objects, or throw java.lang.IllegalArgumentException if such a pool cannot be created.
- makeKey(int) - Method in class org.apache.commons.pool.TestKeyedObjectPool
- makeObject(Object) - Method in class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- makeObject() - Method in class org.apache.commons.pool.BasePoolableObjectFactory
- makeObject(Object) - Method in interface org.apache.commons.pool.KeyedPoolableObjectFactory
- Create an instance that can be served by the pool.
- makeObject() - Method in interface org.apache.commons.pool.PoolableObjectFactory
- Creates an instance that can be returned by the pool.
O
- ObjectPool - interface org.apache.commons.pool.ObjectPool.
- A pooling interface.
- ObjectPoolFactory - interface org.apache.commons.pool.ObjectPoolFactory.
- A factory interface for creating ObjectPools.
- org.apache.commons.pool - package org.apache.commons.pool
P
- PoolableObjectFactory - interface org.apache.commons.pool.PoolableObjectFactory.
- An interface defining life-cycle methods for instances to be used in an ObjectPool.
- passivateObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- No-op.
- passivateObject(Object) - Method in class org.apache.commons.pool.BasePoolableObjectFactory
- No-op.
- passivateObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedPoolableObjectFactory
- Uninitialize an instance to be returned to the pool.
- passivateObject(Object) - Method in interface org.apache.commons.pool.PoolableObjectFactory
- Uninitialize an instance to be returned to the pool.
R
- returnObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- returnObject(Object) - Method in class org.apache.commons.pool.BaseObjectPool
- returnObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Return an instance to my pool.
- returnObject(Object) - Method in interface org.apache.commons.pool.ObjectPool
- Return an instance to my pool.
S
- setFactory(KeyedPoolableObjectFactory) - Method in class org.apache.commons.pool.BaseKeyedObjectPool
- Not supported in this base implementation.
- setFactory(PoolableObjectFactory) - Method in class org.apache.commons.pool.BaseObjectPool
- Not supported in this base implementation.
- setFactory(KeyedPoolableObjectFactory) - Method in interface org.apache.commons.pool.KeyedObjectPool
- Sets the factory I use to create new instances (optional operation).
- setFactory(PoolableObjectFactory) - Method in interface org.apache.commons.pool.ObjectPool
- Sets the factory I use to create new instances (optional operation).
- setUp() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- setUp() - Method in class org.apache.commons.pool.TestObjectPool
- suite() - Static method in class org.apache.commons.pool.TestAll
- suite() - Static method in class org.apache.commons.pool.TestBaseKeyedObjectPool
- suite() - Static method in class org.apache.commons.pool.TestBaseKeyedPoolableObjectFactory
- suite() - Static method in class org.apache.commons.pool.TestBaseObjectPool
- suite() - Static method in class org.apache.commons.pool.TestBasePoolableObjectFactory
T
- TestAll - class org.apache.commons.pool.TestAll.
- TestAll(String) - Constructor for class org.apache.commons.pool.TestAll
- TestBaseKeyedObjectPool - class org.apache.commons.pool.TestBaseKeyedObjectPool.
- TestBaseKeyedObjectPool(String) - Constructor for class org.apache.commons.pool.TestBaseKeyedObjectPool
- TestBaseKeyedPoolableObjectFactory - class org.apache.commons.pool.TestBaseKeyedPoolableObjectFactory.
- TestBaseKeyedPoolableObjectFactory(String) - Constructor for class org.apache.commons.pool.TestBaseKeyedPoolableObjectFactory
- TestBaseObjectPool - class org.apache.commons.pool.TestBaseObjectPool.
- TestBaseObjectPool(String) - Constructor for class org.apache.commons.pool.TestBaseObjectPool
- TestBasePoolableObjectFactory - class org.apache.commons.pool.TestBasePoolableObjectFactory.
- TestBasePoolableObjectFactory(String) - Constructor for class org.apache.commons.pool.TestBasePoolableObjectFactory
- TestKeyedObjectPool - class org.apache.commons.pool.TestKeyedObjectPool.
- Abstract junit.framework.TestCase for ObjectPool implementations.
- TestKeyedObjectPool(String) - Constructor for class org.apache.commons.pool.TestKeyedObjectPool
- TestObjectPool - class org.apache.commons.pool.TestObjectPool.
- Abstract junit.framework.TestCase for ObjectPool implementations.
- TestObjectPool(String) - Constructor for class org.apache.commons.pool.TestObjectPool
- tearDown() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- tearDown() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseAddObject() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseAddObject() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseBorrow() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseBorrow() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseBorrowReturn() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseBorrowReturn() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseCantCloseTwice() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseClear() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseClear() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseClosePool() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseInvalidateObject() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseInvalidateObject() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseNumActiveNumIdle() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testBaseNumActiveNumIdle() - Method in class org.apache.commons.pool.TestObjectPool
- testBaseNumActiveNumIdle2() - Method in class org.apache.commons.pool.TestKeyedObjectPool
- testDefaultMethods() - Method in class org.apache.commons.pool.TestBaseKeyedPoolableObjectFactory
- testDefaultMethods() - Method in class org.apache.commons.pool.TestBasePoolableObjectFactory
- testUnsupportedOperations() - Method in class org.apache.commons.pool.TestBaseKeyedObjectPool
- testUnsupportedOperations() - Method in class org.apache.commons.pool.TestBaseObjectPool
V
- validateObject(Object, Object) - Method in class org.apache.commons.pool.BaseKeyedPoolableObjectFactory
- This implementation always returns true.
- validateObject(Object) - Method in class org.apache.commons.pool.BasePoolableObjectFactory
- This implementation always returns true.
- validateObject(Object, Object) - Method in interface org.apache.commons.pool.KeyedPoolableObjectFactory
- Ensures that the instance is safe to be returned by the pool.
- validateObject(Object) - Method in interface org.apache.commons.pool.PoolableObjectFactory
- Ensures that the instance is safe to be returned by the pool.
_
- _pool - Variable in class org.apache.commons.pool.TestKeyedObjectPool
- _pool - Variable in class org.apache.commons.pool.TestObjectPool
A B C D G I K M O P R S T V _
|
|||||||||
| Home >> All >> org >> apache >> commons >> [ pool overview ] | PREV NEXT | ||||||||