Also: HttpClient
public interface

ConnManagerPNames

org.apache.http.conn.params.ConnManagerPNames
Known Indirect Subclasses

Class Overview

Parameter names for connection managers in HttpConn.

Constants

public static final String MAX_CONNECTIONS_PER_ROUTE

Also: HttpClient

This constant is deprecated.
use setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int), getMaxForRoute(org.apache.http.conn.routing.HttpRoute)

Defines the maximum number of connections per route. This limit is interpreted by client connection managers and applies to individual manager instances.

This parameter expects a value of type ConnPerRoute.

Constant Value: "http.conn-manager.max-per-route"

public static final String MAX_TOTAL_CONNECTIONS

Also: HttpClient

This constant is deprecated.
use setMaxTotal(int), getMaxTotal()

Defines the maximum number of connections in total. This limit is interpreted by client connection managers and applies to individual manager instances.

This parameter expects a value of type Integer.

Constant Value: "http.conn-manager.max-total"

public static final String TIMEOUT

Also: HttpClient

This constant is deprecated.
use CONNECTION_TIMEOUT

Defines the timeout in milliseconds used when retrieving an instance of ManagedClientConnection from the ClientConnectionManager.

This parameter expects a value of type Long.

Constant Value: "http.conn-manager.timeout"