Example usage for org.apache.http.conn ClientConnectionManager interface-usage

List of usage examples for org.apache.http.conn ClientConnectionManager interface-usage

Introduction

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

Usage

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.conn.SingleClientConnManager.java

/**
 * A connection manager for a single connection. This connection manager
 * maintains only one active connection at a time. Even though this class
 * is thread-safe it ought to be used by one execution thread only.
 * <p>
 * SingleClientConnManager will make an effort to reuse the connection

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.tsccm.ThreadSafeClientConnManager.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