Uses of Class
org.apache.commons.pool2.impl.GenericObjectPoolConfig
-
Packages that use GenericObjectPoolConfig Package Description org.apache.commons.pool2.impl Object pooling API implementations. -
-
Uses of GenericObjectPoolConfig in org.apache.commons.pool2.impl
Methods in org.apache.commons.pool2.impl that return GenericObjectPoolConfig Modifier and Type Method Description GenericObjectPoolConfig<T>
GenericObjectPoolConfig. clone()
Methods in org.apache.commons.pool2.impl with parameters of type GenericObjectPoolConfig Modifier and Type Method Description void
GenericObjectPool. setConfig(GenericObjectPoolConfig<T> conf)
Sets the base pool configuration.Constructors in org.apache.commons.pool2.impl with parameters of type GenericObjectPoolConfig Constructor Description GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig<T> config)
Creates a newGenericObjectPool
using a specific configuration.GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig<T> config, AbandonedConfig abandonedConfig)
Creates a newGenericObjectPool
that tracks and destroys objects that are checked out, but never returned to the pool.
-