Example usage for org.apache.commons.pool.impl GenericObjectPool subclass-usage

List of usage examples for org.apache.commons.pool.impl GenericObjectPool subclass-usage

Introduction

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

Usage

From source file org.bml.util.time.StopWatchPool.java

/**
 * Pool for StopWatch objects. Good for use when tracking telemetry at scale.
 *
 * @author Brian M. Lima
 */
public class StopWatchPool extends GenericObjectPool<StopWatch> {

From source file org.kiji.schema.KijiTableReaderPool.java

/**
 * Maintains a pool of opened KijiTableReaders for reuse.
 *
 * <p>
 *   KijiTableReaders retrieved from the pool should be closed as normal when no longer needed.
 *   Closing a KijiTableReader from this pool will return it to the pool and make it available to

From source file org.opens.tanaguru.sebuilder.tools.FirefoxDriverObjectPool.java

/**
 * FirefoxDriver Object Pool.</br>
 * The following parameters are set by spring configuration : 
 * <ul>
 * <li>LIFO</li>
 * <li>whenExhaustedAction</li>

From source file org.robotninjas.riemann.pool.RiemannConnectionPool.java

public class RiemannConnectionPool extends GenericObjectPool<RiemannTcpConnection> {

    private final RiemannClient client;

    @Inject
    public RiemannConnectionPool(RiemannTcpClient client) {

From source file org.tanaguru.sebuilder.tools.FirefoxDriverObjectPool.java

/**
 * FirefoxDriver Object Pool.</br>
 * The following parameters are set by spring configuration : 
 * <ul>
 * <li>LIFO</li>
 * <li>whenExhaustedAction</li>

From source file org.zenoss.lib.tsdb.OpenTsdbClientPool.java

/**
 * Pools connections to OpenTSDB
 * @author cschellenger
 */
public class OpenTsdbClientPool extends GenericObjectPool<OpenTsdbClient> {