BoundedPoolpublic class BoundedPool extends ObjectPool $Source: /cvs/glassfish/appserv-commons/src/java/com/sun/enterprise/util/pool/BoundedPool.java,v $ |
Constructors Summary |
---|
public BoundedPool(ObjectFactory factory, int minSize, int maxLimit, long maxIdleTime)Create an Unbounded pool.
super(factory, minSize, minSize, maxLimit, maxIdleTime);
| public BoundedPool(ObjectFactory factory, int minSize, int maxLimit, long maxIdleTime, int initialSize)Create an Unbounded pool.
super(factory, minSize, initialSize, maxLimit, maxIdleTime);
|
|