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 AbandonedConfigBaseGenericObjectPool.abandonedConfigAdditional configuration properties for abandoned object tracking.Methods in org.apache.commons.pool2.impl that return AbandonedConfigModifier and TypeMethodDescriptionstatic AbandonedConfigAbandonedConfig.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 AbandonedConfigAbandonedConfig.copy(AbandonedConfig abandonedConfig) Creates a new instance with values from the given instance.(package private) ArrayList<PooledObject<T>>BaseGenericObjectPool.createRemoveList(AbandonedConfig abandonedConfig, Map<BaseGenericObjectPool.IdentityWrapper<T>, PooledObject<T>> allObjects) Creates a list of pooled objects to remove based on their state.private voidGenericKeyedObjectPool.removeAbandoned(AbandonedConfig abandonedConfig) Recovers abandoned objects which have been checked out but not used since longer than the removeAbandonedTimeout.private voidGenericObjectPool.removeAbandoned(AbandonedConfig abandonedConfig) Recovers abandoned objects which have been checked out but not used since longer than the removeAbandonedTimeout.voidBaseGenericObjectPool.setAbandonedConfig(AbandonedConfig abandonedConfig) Sets the abandoned object removal configuration.Constructors in org.apache.commons.pool2.impl with parameters of type AbandonedConfigModifierConstructorDescriptionprivateAbandonedConfig(AbandonedConfig abandonedConfig) Creates a new instance with values from the given instance.GenericKeyedObjectPool(KeyedPooledObjectFactory<K, T> factory, GenericKeyedObjectPoolConfig<T> config, AbandonedConfig abandonedConfig) Creates a newGenericKeyedObjectPoolthat 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 newGenericObjectPoolthat tracks and destroys objects that are checked out, but never returned to the pool.