Uses of Interface
org.apache.commons.pool.KeyedPoolableObjectFactory

Packages that use KeyedPoolableObjectFactory
org.apache.commons.pool Object pooling API.  
org.apache.commons.pool.impl Object pooling API implementations.  
 

Uses of KeyedPoolableObjectFactory in org.apache.commons.pool
 

Classes in org.apache.commons.pool that implement KeyedPoolableObjectFactory
 class BaseKeyedPoolableObjectFactory
          A base implemenation of KeyedPoolableObjectFactory.
 

Methods in org.apache.commons.pool with parameters of type KeyedPoolableObjectFactory
 void BaseKeyedObjectPool.setFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
          Not supported in this base implementation.
 void KeyedObjectPool.setFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
          Sets the factory I use to create new instances (optional operation).
 

Uses of KeyedPoolableObjectFactory in org.apache.commons.pool.impl
 

Fields in org.apache.commons.pool.impl declared as KeyedPoolableObjectFactory
protected  org.apache.commons.pool.KeyedPoolableObjectFactory GenericKeyedObjectPoolFactory._factory
           
protected  org.apache.commons.pool.KeyedPoolableObjectFactory StackKeyedObjectPool._factory
          My KeyedPoolableObjectFactory.
protected  org.apache.commons.pool.KeyedPoolableObjectFactory StackKeyedObjectPoolFactory._factory
           
 

Methods in org.apache.commons.pool.impl with parameters of type KeyedPoolableObjectFactory
 void GenericKeyedObjectPool.setFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
           
 void StackKeyedObjectPool.setFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
           
 

Constructors in org.apache.commons.pool.impl with parameters of type KeyedPoolableObjectFactory
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, GenericKeyedObjectPool.Config config)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int maxTotal, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
          Create a new GenericKeyedObjectPool using the specified values.
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, GenericKeyedObjectPool.Config config)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int maxTotal)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
           
GenericKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int maxTotal, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
           
StackKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
          Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int max)
          Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPool(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int max, int init)
          Create a new SimpleKeyedObjectPool using the specified factory to create new instances.
StackKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory)
           
StackKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int max)
           
StackKeyedObjectPoolFactory(org.apache.commons.pool.KeyedPoolableObjectFactory factory, int max, int init)
           
 



Copyright © 2001-2004 The Apache Software Foundation. All Rights Reserved.