Example usage for org.apache.commons.pool2 ObjectPool interface-usage

List of usage examples for org.apache.commons.pool2 ObjectPool interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.pool2 ObjectPool interface-usage.

Usage

From source file com.liaison.shachi.resmgr.pool.HBaseResourcePool.java

/**
 * TODO
 * @author Branden Smith; Liaison Technologies, Inc.
 */
public interface HBaseResourcePool<R>
        extends ConfigurableNonKeyedResourcePool<R>, StatsAwareResourcePool<R>, ObjectPool<R> {

From source file JDBCPool.dbcp.demo.sourcecode.GenericObjectPool.java

/**
 * A configurable {@link ObjectPool} implementation.
 * <p>
 * When coupled with the appropriate {@link PooledObjectFactory},
 * <code>GenericObjectPool</code> provides robust pooling functionality for
 * arbitrary objects.</p>