Example usage for org.apache.http.pool AbstractConnPool subclass-usage

List of usage examples for org.apache.http.pool AbstractConnPool subclass-usage

Introduction

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

Usage

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

/**
 * @since 4.3
 */
@ThreadSafe
class CPool extends AbstractConnPool<HttpRoute, ManagedHttpClientConnection, CPoolEntry> {

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

/**
 * @since 4.2
 */
public class FixedHttpConnPool extends AbstractConnPool<HttpRoute, OperatedClientConnection, HttpPoolEntry> {

    private static AtomicLong COUNTER = new AtomicLong();

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

/**
 * @since 4.2
 *
 * @deprecated (4.3) no longer used.
 */
@Deprecated