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

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

Introduction

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

Usage

From source file com.ok2c.lightmtp.impl.pool.LeasedSession.java

public class LeasedSession extends PoolEntry<SessionEndpoint, IOSession> {

    LeasedSession(final String id, final SessionEndpoint endpoint, final IOSession iosession) {
        super(id, endpoint, iosession, -1, TimeUnit.MILLISECONDS);
    }

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

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

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

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

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

@ThreadSafe
class CPoolEntry extends PoolEntry<HttpRoute, ManagedNHttpClientConnection> {

    private final Log log;
    private volatile int socketTimeout;
    private volatile boolean routeComplete;

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

@Deprecated
class HttpPoolEntry extends PoolEntry<HttpRoute, IOSession> {

    private final Log log;
    private final RouteTracker tracker;