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 edu.ucsb.eucalyptus.transport.client.ClientPool.java

/*******************************************************************************
 * Copyright (c) 2009  Eucalyptus Systems, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, only version 3 of the License.

From source file edu.vt.middleware.ldap.pool.commons.CommonsLdapPool.java

/**
 * <code>CommonsLdapPool</code> provides a implementation of a commons pooling
 * <code>GenericObjectPool</code> for testing.
 *
 * @author  Middleware Services
 * @version  $Revision$ $Date$

From source file com.ning.killbill.zuora.zuora.ConnectionPool.java

public class ConnectionPool extends GenericObjectPool {

    private static Config createPoolConfig(ZuoraConfig zuoraConfig) {
        Config config = new Config();

        config.minIdle = zuoraConfig.getPoolMinIdle();

From source file core.sample.pool.ThreadPool.java

/**
 * @author Murali Kosaraju 
 * ThreadPool - Extends GenericObjectPool. Overrides some methods and
 * provides some helper methods.
 */
public class ThreadPool extends GenericObjectPool {

From source file com.workplacesystems.utilsj.threadpool.ThreadPool.java

/**
 */
public class ThreadPool extends GenericObjectPool {
    /**
     * Logger for this class
     */

From source file com.newlandframework.avatarmq.netty.MessageConnectPool.java

/**
 * @filename:MessageConnectPool.java
 * @description:MessageConnectPool?
 * @author tangjie<https://github.com/tang-jie>
 * @blog http://www.cnblogs.com/jietang/
 * @since 2016-8-11

From source file org.red5.server.pooling.ThreadPool.java

/**
 * ThreadPool - Extends GenericObjectPool. Overrides some methods and provides
 * some helper methods.
 *
 * @author Murali Kosaraju
 */

From source file com.lithium.flow.util.ConfigObjectPool.java

/**
 * @author Matt Ayres
 */
public class ConfigObjectPool<T> extends GenericObjectPool<T> {
    public ConfigObjectPool(@Nonnull PoolableObjectFactory<T> factory,
            @Nonnull com.lithium.flow.config.Config config) {

From source file velo.adapters.AdapterPool.java

public class AdapterPool extends GenericObjectPool {
    private static Logger logger = Logger.getLogger(AdapterPool.class.getName());
    /**
     * A unique ID of the pool
     */
    private String uniqueId;

From source file com.feedzai.fos.impl.weka.utils.pool.AutoPopulateGenericObjectPool.java

/**
 * Extension of the @{GenericObjectPool} to auto populate based on the minIdle even if the monitor is not enabled.
 *
 * @param <T> the type of elements in the pool
 * @author Marco Jorge (marco.jorge@feedzai.com)
 */