Example usage for org.apache.commons.pool2.impl GenericKeyedObjectPool subclass-usage

List of usage examples for org.apache.commons.pool2.impl GenericKeyedObjectPool subclass-usage

Introduction

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

Usage

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

/**
 * TODO
 * @author Branden Smith; Liaison Technologies, Inc.
 */
public class HBaseKeyedResourcePoolDefault<K, R> extends GenericKeyedObjectPool<K, R>
        implements HBaseKeyedResourcePool<K, R> {

From source file io.github.hiant.ConnectionPool.java

/**
 * @author heihuwudi@gmail.com Created By: 2016.1.28.11:39
 */
public class ConnectionPool extends GenericKeyedObjectPool<Configuration, Connection> {

    public ConnectionPool(KeyedPooledObjectFactory<Configuration, Connection> factory,

From source file com.google.devtools.build.lib.worker.SimpleWorkerPool.java

/**
 * A worker pool that spawns multiple workers and delegates work to them.
 *
 * <p>This is useful when the worker cannot handle multiple parallel requests on its own and we need
 * to pre-fork a couple of them instead.
 */

From source file com.google.devtools.build.lib.worker.WorkerPool.java

/**
 * A worker pool that spawns multiple workers and delegates work to them.
 *
 * <p>This is useful when the worker cannot handle multiple parallel requests on its own and we need
 * to pre-fork a couple of them instead.
 */

From source file org.openhab.io.transport.modbus.internal.ModbusConnectionPool.java

/**
 * Pool for modbus connections.
 *
 * Only one connection is allowed to be active at a time.
 *
 * @author Sami Salonen - Initial contribution