Package com.jdon.controller.pool

Interface Summary
Pool  
Poolable Instances of classes in this role collaborate with other objects for a limited amount of time, then they are no longer needed for that collaboration.
 

Class Summary
CommonsPoolAdapter ObjectPool pool = new StackObjectPool(new MyPoolableObjectFactory()); CommonsPoolAdapter cp = new CommonsPoolAdapter(pool); MyObject mo = (MyObject)cp.borrowObject(); ....
CommonsPoolFactory  
PoolConfigure