Example usage for org.apache.commons.pool PoolableObjectFactory interface-usage

List of usage examples for org.apache.commons.pool PoolableObjectFactory interface-usage

Introduction

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

Usage

From source file com.mapd.parser.server.CalciteParserFactory.java

/**
 *
 * @author michael
 */
class CalciteParserFactory implements PoolableObjectFactory {
    final static Logger MAPDLOGGER = LoggerFactory.getLogger(CalciteParserFactory.class);

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

/**
 * @author Murali Kosaraju 
 * ThreadObjectFactory - Extends PoolableObjectFactory
 * and overrides some lifecycle methods to exercise control over how the
 * resources(threads) are managed.
 */

From source file com.meidusa.amoeba.net.poolable.PoolableObjectFactoryWapper.java

/**
 * factory Wrapperobject {@link PoolableObject}
 * @author <a href=mailto:piratebase@sina.com>Struct chen</a>
 */
public class PoolableObjectFactoryWapper implements PoolableObjectFactory {
    private PoolableObjectFactory factory;

From source file org.kisst.cordys.as400.conn.As400ConnectionFactory.java

public class As400ConnectionFactory implements PoolableObjectFactory {

    private final PoolConfiguration conf;

    public As400ConnectionFactory(PoolConfiguration conf) {
        this.conf = conf;

From source file com.jaspersoft.hadoop.hbase.connection.HBaseConnectionFactory.java

/**
 * 
 * @author Eric Diaz
 * 
 */
public class HBaseConnectionFactory implements PoolableObjectFactory<HBaseConnection> {

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

/**
 * @author Murali Kosaraju ThreadObjectFactory - Extends PoolableObjectFactory
 *         and overrides some lifecycle methods to exercise control over how the
 *         resources(threads) are managed.
 */
public class ThreadObjectFactory implements PoolableObjectFactory {

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

/**
 * Abstract ThreadObjectFactory. Override to initialise newly created threads.
 */
public abstract class ThreadObjectFactory implements PoolableObjectFactory {
    /**
     * Logger for this class

From source file org.spf4j.recyclable.impl.ExpensiveTestObjectFactoryApache.java

/**
 *
 * @author zoly
 */
public final class ExpensiveTestObjectFactoryApache implements PoolableObjectFactory<ExpensiveTestObject> {

From source file org.geotools.process.idl.IDLWrapperPoolableFactory.java

/** 
 * A PoolableFactory needed to handle {@link IDLObjectWrapper} instances 
 */
public abstract class IDLWrapperPoolableFactory implements PoolableObjectFactory {

    protected final static Logger LOGGER = Logger.getLogger("org.geotools.process.idl");

From source file com.velix.jmongo.PoolableConnectionFactory.java

public class PoolableConnectionFactory implements PoolableObjectFactory {

    private static final Logger LOG = Logger.getLogger(PoolableConnectionFactory.class);

    private final InetSocketAddress address;
    private final Protocol protocol;