Example usage for org.apache.http.impl.nio.pool SessionPool subclass-usage

List of usage examples for org.apache.http.impl.nio.pool SessionPool subclass-usage

Introduction

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

Usage

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

class HttpSessionPool extends SessionPool<HttpRoute, HttpPoolEntry> {

    HttpSessionPool(final Log log, final ConnectingIOReactor ioreactor, final SchemeRegistry schemeRegistry,
            long timeToLive, final TimeUnit tunit) {
        super(ioreactor, new InternalEntryFactory(log, timeToLive, tunit),
                new InternalRouteResolver(schemeRegistry), 20, 50);