Uses of Class
org.apache.commons.pool2.impl.AbandonedConfig
Packages that use AbandonedConfig
-
Uses of AbandonedConfig in org.apache.commons.pool2.impl
Fields in org.apache.commons.pool2.impl declared as AbandonedConfigModifier and TypeFieldDescriptionprotected AbandonedConfig
BaseGenericObjectPool.abandonedConfig
Additional configuration properties for abandoned object tracking.Methods in org.apache.commons.pool2.impl that return AbandonedConfigModifier and TypeMethodDescriptionstatic AbandonedConfig
AbandonedConfig.copy
(AbandonedConfig abandonedConfig) Creates a new instance with values from the given instance.Methods in org.apache.commons.pool2.impl with parameters of type AbandonedConfigModifier and TypeMethodDescriptionstatic AbandonedConfig
AbandonedConfig.copy
(AbandonedConfig abandonedConfig) Creates a new instance with values from the given instance.void
BaseGenericObjectPool.setAbandonedConfig
(AbandonedConfig abandonedConfig) Sets the abandoned object removal configuration.Constructors in org.apache.commons.pool2.impl with parameters of type AbandonedConfigModifierConstructorDescriptionGenericKeyedObjectPool
(KeyedPooledObjectFactory<K, T> factory, GenericKeyedObjectPoolConfig<T> config, AbandonedConfig abandonedConfig) Creates a newGenericKeyedObjectPool
that tracks and destroys objects that are checked out, but never returned to the pool.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.