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

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

Introduction

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

Usage

From source file org.apache.jmeter.visualizers.backend.graphite.SocketOutputStreamPoolFactory.java

/**
 * Pool Factory of {@link SocketOutputStream}
 * @since 2.13
 */
public class SocketOutputStreamPoolFactory
        extends BaseKeyedPooledObjectFactory<SocketConnectionInfos, SocketOutputStream>

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

/**
 * Factory for {@linkplain org.jmxtrans.embedded.util.net.SocketOutputStream} instances created from {@linkplain HostAndPort}.
 *
 * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a>
 */
public class SocketOutputStreamPoolFactory extends BaseKeyedPooledObjectFactory<HostAndPort, SocketOutputStream>

From source file org.wso2.carbon.transport.jms.factory.PooledJMSConnectionFactory.java

/**
 * JMS Connection Factory which pools connections for better performance.
 */
public class PooledJMSConnectionFactory extends JMSConnectionFactory
        implements KeyedPooledObjectFactory<PooledConnectionKey, Connection> {

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

/**
 * Factory for {@linkplain SocketWriter} instances created from {@linkplain HostAndPort}.
 *
 * @author <a href="mailto:cleclerc@cloudbees.com">Cyrille Le Clerc</a>
 */
public class SocketWriterPoolFactory extends BaseKeyedPooledObjectFactory<HostAndPort, SocketWriter>