Example usage for org.apache.http.impl.conn.tsccm ThreadSafeClientConnManager subclass-usage

List of usage examples for org.apache.http.impl.conn.tsccm ThreadSafeClientConnManager subclass-usage

Introduction

In this page you can find the example usage for org.apache.http.impl.conn.tsccm ThreadSafeClientConnManager subclass-usage.

Usage

From source file com.subgraph.vega.internal.http.requests.connection.BasicThreadSafeClientConnectionManager.java

public class BasicThreadSafeClientConnectionManager extends ThreadSafeClientConnManager {

    public BasicThreadSafeClientConnectionManager(SchemeRegistry sr) {
        super(sr);
    }

From source file com.subgraph.vega.internal.http.requests.connection.UnencodingThreadSafeClientConnectionManager.java

public class UnencodingThreadSafeClientConnectionManager extends ThreadSafeClientConnManager {

    public UnencodingThreadSafeClientConnectionManager(SchemeRegistry sr) {
        super(sr);
    }

From source file com.android.mms.service.http.NetworkAwareThreadSafeClientConnManager.java

/**
 * This is a subclass of {@link org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager}
 * which allows us to specify a custom name resolver and the address type
 */
public class NetworkAwareThreadSafeClientConnManager extends ThreadSafeClientConnManager {
    public NetworkAwareThreadSafeClientConnManager(HttpParams params, SchemeRegistry schreg, NameResolver resolver,

From source file org.apache.droids.protocol.http.DroidsHttpConnectionManager.java

class DroidsHttpConnectionManager extends ThreadSafeClientConnManager {

    public DroidsHttpConnectionManager(HttpParams params, SchemeRegistry schemes) {
        super(params, schemes);
    }

From source file com.betfair.cougar.client.CougarClientConnManager.java

/**
 * Expose counters on client connection pools in JMX.
 */
@ManagedResource
public class CougarClientConnManager extends ThreadSafeClientConnManager {

From source file org.devtcg.five.util.streaming.HackThreadSafeClientConnManager.java

/**
 * Hack to control the ClientConnection created for use with HttpClient,
 * ultimately to work around a bug in Harmony: HARMONY-6326.
 */
public class HackThreadSafeClientConnManager extends ThreadSafeClientConnManager {
    public HackThreadSafeClientConnManager(HttpParams params, SchemeRegistry schreg) {

From source file com.netflix.http4.MonitoredConnectionManager.java

/**
 * A connection manager that uses {@link NamedConnectionPool}, which provides
 * connection reuse statistics, as its underlying connection pool.
 * 
 * @author awang
 *

From source file com.chen.emailcommon.utility.EmailClientConnectionManager.java

/**
 * A thread-safe client connection manager that manages the use of client certificates from the
 * {@link android.security.KeyChain} for SSL connections.
 */
public class EmailClientConnectionManager extends ThreadSafeClientConnManager {

From source file com.android.emailcommon.utility.EmailClientConnectionManager.java

/**
 * A thread-safe client connection manager that manages the use of client certificates from the
 * {@link android.security.KeyChain} for SSL connections.
 */
public class EmailClientConnectionManager extends ThreadSafeClientConnManager {

From source file com.eviware.soapui.impl.wsdl.support.http.SoapUIMultiThreadedHttpConnectionManager.java

/**
 * Manages a set of HttpConnections for various HostConfigurations. Modified to
 * keep different pools for different keystores.
 */
public class SoapUIMultiThreadedHttpConnectionManager extends ThreadSafeClientConnManager {