GenericObjectPool(PoolableObjectFactory<T> factory) |
Create a new GenericObjectPool using the specified factory.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
boolean testOnBorrow,
boolean testOnReturn) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
boolean testOnBorrow,
boolean testOnReturn) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> 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(PoolableObjectFactory<T> 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.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
int minIdle,
boolean testOnBorrow,
boolean testOnReturn,
long timeBetweenEvictionRunsMillis,
int numTestsPerEvictionRun,
long minEvictableIdleTimeMillis,
boolean testWhileIdle,
long softMinEvictableIdleTimeMillis) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
int minIdle,
boolean testOnBorrow,
boolean testOnReturn,
long timeBetweenEvictionRunsMillis,
int numTestsPerEvictionRun,
long minEvictableIdleTimeMillis,
boolean testWhileIdle,
long softMinEvictableIdleTimeMillis,
boolean lifo) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPool(PoolableObjectFactory<T> factory,
GenericObjectPool.Config config) |
Create a new GenericObjectPool using the specified values.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
boolean testOnBorrow,
boolean testOnReturn) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
boolean testOnBorrow,
boolean testOnReturn) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
boolean testOnBorrow,
boolean testOnReturn,
long timeBetweenEvictionRunsMillis,
int numTestsPerEvictionRun,
long minEvictableIdleTimeMillis,
boolean testWhileIdle) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> 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 GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
int minIdle,
boolean testOnBorrow,
boolean testOnReturn,
long timeBetweenEvictionRunsMillis,
int numTestsPerEvictionRun,
long minEvictableIdleTimeMillis,
boolean testWhileIdle,
long softMinEvictableIdleTimeMillis) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxActive,
byte whenExhaustedAction,
long maxWait,
int maxIdle,
int minIdle,
boolean testOnBorrow,
boolean testOnReturn,
long timeBetweenEvictionRunsMillis,
int numTestsPerEvictionRun,
long minEvictableIdleTimeMillis,
boolean testWhileIdle,
long softMinEvictableIdleTimeMillis,
boolean lifo) |
Create a new GenericObjectPoolFactory.
|
GenericObjectPoolFactory(PoolableObjectFactory<T> factory,
GenericObjectPool.Config config) |
Create a new GenericObjectPoolFactory.
|
SoftReferenceObjectPool(PoolableObjectFactory<T> factory) |
Create a SoftReferenceObjectPool with the specified factory.
|
SoftReferenceObjectPool(PoolableObjectFactory<T> factory,
int initSize) |
Deprecated.
|
StackObjectPool(PoolableObjectFactory<T> factory) |
Create a new StackObjectPool using the specified factory to create new instances.
|
StackObjectPool(PoolableObjectFactory<T> factory,
int maxIdle) |
Create a new SimpleObjectPool using the specified factory to create new instances,
capping the number of "sleeping" instances to maxIdle.
|
StackObjectPool(PoolableObjectFactory<T> factory,
int maxIdle,
int initIdleCapacity) |
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(PoolableObjectFactory<T> factory) |
Create a new StackObjectPoolFactory.
|
StackObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxIdle) |
Create a new StackObjectPoolFactory.
|
StackObjectPoolFactory(PoolableObjectFactory<T> factory,
int maxIdle,
int initIdleCapacity) |
Create a new StackObjectPoolFactory.
|