Example usage for org.apache.commons.pool.impl StackObjectPool StackObjectPool

List of usage examples for org.apache.commons.pool.impl StackObjectPool StackObjectPool

Introduction

In this page you can find the example usage for org.apache.commons.pool.impl StackObjectPool StackObjectPool.

Prototype

public StackObjectPool(final PoolableObjectFactory factory, final int maxIdle) 

Source Link

Usage

From source file:gov.nih.nci.caintegrator.application.analysis.gp.GenePatternPublicUserPool.java

private GenePatternPublicUserPool() {
    PoolableObjectFactory factory = new GenePatternPublicUserFactory();
    String size = System.getProperty("gov.nih.nci.caintegrator.gp.publicuser.poolsize");
    pool = new StackObjectPool(factory, Integer.parseInt(size));
}