Example usage for org.apache.http.pool ConnPoolControl interface-usage

List of usage examples for org.apache.http.pool ConnPoolControl interface-usage

Introduction

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

Usage

From source file net.community.chest.gitcloud.facade.frontend.git.HttpClientConnectionManagerFactoryBean.java

/**
 * @author Lyor Goldstein
 * @since Sep 24, 2013 2:53:58 PM
 */
@Component
@ManagedResource(objectName = "net.community.chest.gitcloud.facade.frontend.git:name=HttpClientConnectionManagerFactoryBean")

From source file org.apache.http.impl.conn.PoolingClientConnectionManager.java

/**
 * Manages a pool of {@link org.apache.http.conn.OperatedClientConnection}
 * and is able to service connection requests from multiple execution threads.
 * Connections are pooled on a per route basis. A request for a route which
 * already the manager has persistent connections for available in the pool
 * will be services by leasing a connection from the pool rather than

From source file org.apache.http.impl.conn.FixedPoolingClientConnectionManager.java

/**
 * Manages a pool of {@link OperatedClientConnection client connections} and
 * is able to service connection requests from multiple execution threads.
 * Connections are pooled on a per route basis. A request for a route which
 * already the manager has persistent connections for available in the pool
 * will be services by leasing a connection from the pool rather than

From source file org.apache.http.impl.nio.conn.PoolingClientAsyncConnectionManager.java

@Deprecated
public class PoolingClientAsyncConnectionManager
        implements ClientAsyncConnectionManager, ConnPoolControl<HttpRoute> {

    private final Log log = LogFactory.getLog(getClass());

From source file org.apache.http.impl.conn.JMeterPoolingClientConnectionManager.java

/**
 * Copy/Paste of {@link PoolingClientConnectionManager} with a slight modification 
 * extracted from {@link PoolingHttpClientConnectionManager} to allow using 
 * better validation mechanism introduced in 4.4
 * TODO : Remove when full upgrade to new HttpClient 4.5.X API is finished
 * @deprecated Will be removed in 3.1, DO NOT USE

From source file org.apache.http.impl.conn.PoolingHttpClientConnectionManager.java

/**
 * <tt>ClientConnectionPoolManager</tt> maintains a pool of
 * {@link HttpClientConnection}s and is able to service connection requests
 * from multiple execution threads. Connections are pooled on a per route
 * basis. A request for a route which already the manager has persistent
 * connections for available in the pool will be services by leasing

From source file org.apache.http.impl.nio.conn.PoolingNHttpClientConnectionManager.java

/**
 * {@code PoolingNHttpClientConnectionManager} maintains a pool of
 * {@link NHttpClientConnection}s and is able to service connection requests
 * from multiple execution threads. Connections are pooled on a per route
 * basis. A request for a route which already the manager has persistent
 * connections for available in the pool will be services by leasing