Uses of Interface
org.apache.commons.pool.ObjectPool

Packages that use ObjectPool
org.apache.commons.pool Object pooling API. 
org.apache.commons.pool.impl Object pooling API implementations. 
 

Uses of ObjectPool in org.apache.commons.pool
 

Classes in org.apache.commons.pool that implement ObjectPool
 class BaseObjectPool
          A simple base impementation of ObjectPool.
 

Methods in org.apache.commons.pool that return ObjectPool
static ObjectPool PoolUtils.adapt(KeyedObjectPool keyedPool)
          Adapt a KeyedObjectPool instance to work where an ObjectPool is needed.
static ObjectPool PoolUtils.adapt(KeyedObjectPool keyedPool, Object key)
          Adapt a KeyedObjectPool instance to work where an ObjectPool is needed using the specified key when delegating.
static ObjectPool PoolUtils.checkedPool(ObjectPool pool, Class type)
          Wraps an ObjectPool and dynamically checks the type of objects borrowed and returned to the keyedPool.
 ObjectPool ObjectPoolFactory.createPool()
          Create and return a new ObjectPool.
static ObjectPool PoolUtils.synchronizedPool(ObjectPool pool)
          Returns a synchronized (thread-safe) ObjectPool backed by the specified ObjectPool.
 

Methods in org.apache.commons.pool with parameters of type ObjectPool
static KeyedObjectPool PoolUtils.adapt(ObjectPool pool)
          Adapt an ObjectPool to work where an KeyedObjectPool is needed.
static ObjectPool PoolUtils.checkedPool(ObjectPool pool, Class type)
          Wraps an ObjectPool and dynamically checks the type of objects borrowed and returned to the keyedPool.
static TimerTask PoolUtils.checkMinIdle(ObjectPool pool, int minIdle, long period)
          Periodically check the idle object count for the keyedPool.
static void PoolUtils.prefill(ObjectPool pool, int count)
          Call addObject() on keyedPool count number of times.
static ObjectPool PoolUtils.synchronizedPool(ObjectPool pool)
          Returns a synchronized (thread-safe) ObjectPool backed by the specified ObjectPool.
 

Uses of ObjectPool in org.apache.commons.pool.impl
 

Classes in org.apache.commons.pool.impl that implement ObjectPool
 class GenericObjectPool
          A configurable ObjectPool implementation.
 class SoftReferenceObjectPool
          A SoftReference based ObjectPool.
 class StackObjectPool
          A simple, Stack-based ObjectPool implementation.
 

Methods in org.apache.commons.pool.impl that return ObjectPool
 ObjectPool GenericObjectPoolFactory.createPool()
           
 ObjectPool StackObjectPoolFactory.createPool()
           
 



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