Uses of Class
net.spy.pool.PoolException

Packages that use PoolException
net.spy.pool Spy Object Pooling System 
 

Uses of PoolException in net.spy.pool
 

Subclasses of PoolException in net.spy.pool
 class NoSuchPoolException
          Exception thrown when there's NoSuchPool.
 

Methods in net.spy.pool that throw PoolException
 PoolAble SNPPPoolFiller.getObject()
          get a new object for the pool.
abstract  PoolAble PoolFiller.getObject()
          Get an object for the pool.
 Object PooledObject.getObject()
          Get the object we just checked out.
 PooledObject PoolContainer.getObject()
          Get an object from the pool.
 void PoolContainer.prune()
          Remove any object that is not checked out, as long as we stay above our minimum object requirement.
 Object PoolAble.getObject()
          Get the object we're pooling.
 void ObjectPool.createPool(String name, PoolFiller pf)
          Create a new object pool.
 void ObjectPool.destroyPool(String name)
          Destory a pool.
 PooledObject ObjectPool.getObject(String name)
          Get an object from a pool.
 void ObjectPool.prune()
          Prune the object pools.
 PoolAble JDBCPoolFiller.getObject()
          get a new object for the pool.
 

Constructors in net.spy.pool that throw PoolException
PoolContainer(String name, PoolFiller pf, SpyConfig conf)
          Create a new PoolContainer for a pool with a given name, and filler.
PoolContainer(String name, PoolFiller pf)
          Create a new PoolContainer for a pool with a given name, and filler.