Uses of Interface
org.sadun.util.pool.ObjectPool.Factory

Packages that use ObjectPool.Factory
org.sadun.util.pool The simple Object Pool package. 
org.sadun.util.pool2 NOT COMPLETE YET.  
 

Uses of ObjectPool.Factory in org.sadun.util.pool
 

Classes in org.sadun.util.pool that implement ObjectPool.Factory
 class EjbFactory
          An ExtendedObjectPool.Factory implementation which uses reflection to create instances of enterprise java beans, looking up the home interface and invoking a proper create() method.
static class ObjectPool.BaseFactory
          A base implementation of ExtendedObjectPool.Factory relying on reflection, holding a Class object, an optional parameter array and an optional Setup object.
static class ObjectPool.ObjectFactory
          An ExtendedObjectPool.Factory implementation which uses reflection to create instances of a certain class.
 

Methods in org.sadun.util.pool that return ObjectPool.Factory
protected  ObjectPool.Factory ObjectPool.getFactory()
          Returns the factory.
 

Methods in org.sadun.util.pool with parameters of type ObjectPool.Factory
protected  void ObjectPool.setFactory(ObjectPool.Factory factory)
          Sets the factory.
 

Constructors in org.sadun.util.pool with parameters of type ObjectPool.Factory
ObjectPool(int n, ObjectPool.Factory factory)
          Create a pool of n objects using the given factory
ExtendedObjectPool(int n, ObjectPool.Factory factory)
          Create a pool of n objects using the given factory
 

Uses of ObjectPool.Factory in org.sadun.util.pool2
 

Classes in org.sadun.util.pool2 that implement ObjectPool.Factory
protected static class ObjectPool.PooledObjectFactory
          A object factory which produces BasePooledObject wrappers for other classes.
 

Constructors in org.sadun.util.pool2 with parameters of type ObjectPool.Factory
ObjectPool(java.lang.String poolName, Configuration configuration, ObjectPool.Factory factory)
          Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool.PooledObjectFactory(ObjectPool pool, ObjectPool.Factory factory)
          Create a factory which is used by the given ObjectPool and employs the given org.sadun.util.pool.ObjectPool.Factory