Uses of Class
org.apache.commons.pool2.impl.AbandonedConfig
-
Packages that use AbandonedConfig Package Description org.apache.commons.pool2.impl Object pooling API implementations. -
-
Uses of AbandonedConfig in org.apache.commons.pool2.impl
Fields in org.apache.commons.pool2.impl declared as AbandonedConfig Modifier and Type Field Description private AbandonedConfig
GenericObjectPool. abandonedConfig
Methods in org.apache.commons.pool2.impl with parameters of type AbandonedConfig Modifier and Type Method Description private void
GenericObjectPool. removeAbandoned(AbandonedConfig ac)
Recover abandoned objects which have been checked out but not used since longer than the removeAbandonedTimeout.void
GenericObjectPool. setAbandonedConfig(AbandonedConfig abandonedConfig)
Sets the abandoned object removal configuration.Constructors in org.apache.commons.pool2.impl with parameters of type AbandonedConfig Constructor Description GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig config, AbandonedConfig abandonedConfig)
Create a newGenericObjectPool
that tracks and destroys objects that are checked out, but never returned to the pool.
-