Uses of Class
org.sadun.util.pool.ObjectPool.ObjectPoolException

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

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

Methods in org.sadun.util.pool that throw ObjectPool.ObjectPoolException
static ObjectPool ObjectPool.newPool(int poolSize, java.lang.String clsName)
          A convenience method to create a new pool of objects of a given class, by name, using their default constructor.
static ObjectPool ObjectPool.newPool(int poolSize, java.lang.String clsName, java.lang.Object[] params)
          A convenience method to create a new pool of objects of a given class, by name, using the given parameters.
 java.lang.Object ObjectPool.Factory.create()
          This method is invoked by the pool when a pooled instance has to be created.
 void ObjectPool.Factory.destroy(java.lang.Object obj)
          This method is invoked by the pool when a pooled instance has to be destroyed.
 java.lang.Object EjbFactory.create()
           
 

Uses of ObjectPool.ObjectPoolException in org.sadun.util.pool.connection
 

Methods in org.sadun.util.pool.connection that throw ObjectPool.ObjectPoolException
 java.sql.Connection ConnectionPool.getConnection()
          Retrieves a connection from the pool.
 

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

Methods in org.sadun.util.pool2 that throw ObjectPool.ObjectPoolException
 java.lang.Object ObjectPool.PooledObjectFactory.create()
           
 void ObjectPool.PooledObjectFactory.destroy(java.lang.Object obj)
           
 

Constructors in org.sadun.util.pool2 that throw ObjectPool.ObjectPoolException
ObjectPool(java.lang.String poolName, Configuration configuration, java.lang.Class objectType)
          Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(java.lang.String poolName, Configuration configuration, java.lang.Class objectType, Setup setupObject)
          Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
ObjectPool(java.lang.String poolName, Configuration configuration, java.lang.Class objectType, java.lang.Object[] params, Setup setupObject)
          Create a named object pool of objects of the given class and the given Configuration (which also provides the size of the pool).
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