Uses of Interface
org.apache.commons.pool2.PooledObjectFactory

Packages that use PooledObjectFactory
org.apache.commons.pool2 Object pooling API. 
org.apache.commons.pool2.impl Object pooling API implementations. 
 

Uses of PooledObjectFactory in org.apache.commons.pool2
 

Classes in org.apache.commons.pool2 that implement PooledObjectFactory
 class BasePooledObjectFactory<T>
          A base implementation of PoolableObjectFactory.
 

Methods in org.apache.commons.pool2 that return PooledObjectFactory
static
<T> PooledObjectFactory<T>
PoolUtils.synchronizedPooledFactory(PooledObjectFactory<T> factory)
          Returns a synchronized (thread-safe) PooledObjectFactory backed by the specified PooledObjectFactory.
 

Methods in org.apache.commons.pool2 with parameters of type PooledObjectFactory
static
<T> PooledObjectFactory<T>
PoolUtils.synchronizedPooledFactory(PooledObjectFactory<T> factory)
          Returns a synchronized (thread-safe) PooledObjectFactory backed by the specified PooledObjectFactory.
 

Uses of PooledObjectFactory in org.apache.commons.pool2.impl
 

Methods in org.apache.commons.pool2.impl that return PooledObjectFactory
 PooledObjectFactory<T> SoftReferenceObjectPool.getFactory()
          Returns the PooledObjectFactory used by this pool to create and manage object instances.
 PooledObjectFactory<T> GenericObjectPool.getFactory()
          Obtain a reference to the factory used to create, destroy and validate the objects used by this pool.
 

Constructors in org.apache.commons.pool2.impl with parameters of type PooledObjectFactory
GenericObjectPool(PooledObjectFactory<T> factory)
          Create a new GenericObjectPool using defaults from GenericObjectPoolConfig.
GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig config)
          Create a new GenericObjectPool using a specific configuration.
GenericObjectPool(PooledObjectFactory<T> factory, GenericObjectPoolConfig config, AbandonedConfig abandonedConfig)
          Create a new GenericObjectPool that tracks and destroys objects that are checked out, but never returned to the pool.
SoftReferenceObjectPool(PooledObjectFactory<T> factory)
          Create a SoftReferenceObjectPool with the specified factory.
 



Copyright © 2001-2013 The Apache Software Foundation. All Rights Reserved.