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

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

Uses of PoolableObjectFactory in org.apache.commons.pool
 

Classes in org.apache.commons.pool that implement PoolableObjectFactory
 class BasePoolableObjectFactory
          A base implemenation of PoolableObjectFactory.
 

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

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

Fields in org.apache.commons.pool.impl declared as PoolableObjectFactory
protected  org.apache.commons.pool.PoolableObjectFactory GenericObjectPoolFactory._factory
           
protected  org.apache.commons.pool.PoolableObjectFactory StackObjectPool._factory
          My PoolableObjectFactory.
protected  org.apache.commons.pool.PoolableObjectFactory StackObjectPoolFactory._factory
           
 

Methods in org.apache.commons.pool.impl with parameters of type PoolableObjectFactory
 void GenericObjectPool.setFactory(org.apache.commons.pool.PoolableObjectFactory factory)
           
 void SoftReferenceObjectPool.setFactory(org.apache.commons.pool.PoolableObjectFactory factory)
           
 void StackObjectPool.setFactory(org.apache.commons.pool.PoolableObjectFactory factory)
           
 

Constructors in org.apache.commons.pool.impl with parameters of type PoolableObjectFactory
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, GenericObjectPool.Config config)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
          Create a new GenericObjectPool using the specified values.
GenericObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
          Create a new GenericObjectPool using the specified values.
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, GenericObjectPool.Config config)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, boolean testOnBorrow, boolean testOnReturn)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
           
GenericObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int maxActive, byte whenExhaustedAction, long maxWait, int maxIdle, int minIdle, boolean testOnBorrow, boolean testOnReturn, long timeBetweenEvictionRunsMillis, int numTestsPerEvictionRun, long minEvictableIdleTimeMillis, boolean testWhileIdle)
           
SoftReferenceObjectPool(org.apache.commons.pool.PoolableObjectFactory factory)
           
SoftReferenceObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int initSize)
           
StackObjectPool(org.apache.commons.pool.PoolableObjectFactory factory)
          Create a new StackObjectPool using the specified factory to create new instances.
StackObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxIdle)
          Create a new SimpleObjectPool using the specified factory to create new instances, capping the number of "sleeping" instances to max
StackObjectPool(org.apache.commons.pool.PoolableObjectFactory factory, int maxIdle, int initIdleCapacity)
          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(org.apache.commons.pool.PoolableObjectFactory factory)
           
StackObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int max)
           
StackObjectPoolFactory(org.apache.commons.pool.PoolableObjectFactory factory, int max, int init)
           
 



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