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

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

Introduction

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

Usage

From source file co.nubetech.crux.pool.HBaseConnectionPool.java

public class HBaseConnectionPool extends GenericKeyedObjectPool {

    public HBaseConnectionPool(KeyedPoolableObjectFactory factory) {
        super(factory);
    }

From source file co.nubetech.crux.pool.rest.HBaseConnectionPool.java

public class HBaseConnectionPool extends GenericKeyedObjectPool {

    public HBaseConnectionPool(KeyedPoolableObjectFactory factory) {
        super(factory);
    }

From source file org.janusgraph.diskstorage.cassandra.thrift.thriftpool.CTConnectionPool.java

/**
 * This class extends Apache Commons Pool's GenericKeyedObjectPool, adding
 * two methods that support Java 5 generic type safety.  However, a
 * programmer can still cause RuntimeExceptions related to type errors
 * by mixing calls to these additional methods with calls to the legacy
 * "Object"-typed methods.

From source file org.jmxtrans.embedded.util.pool.ManagedGenericKeyedObjectPool.java

/**
 * JMX Enabled {@linkplain GenericKeyedObjectPool}.
 *
 * @author <a href="mailto:cleclerc@xebia.fr">Cyrille Le Clerc</a>
 */
public class ManagedGenericKeyedObjectPool<K, V> extends GenericKeyedObjectPool<K, V>