Java org.apache.http.conn.params ConnManagerParams fields, constructors, methods, implement or subclass

Example usage for Java org.apache.http.conn.params ConnManagerParams fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.http.conn.params ConnManagerParams.

The text is from its open source code.

Field

intDEFAULT_MAX_TOTAL_CONNECTIONS
The default maximum number of connections allowed overall

Method

ConnPerRoutegetMaxConnectionsPerRoute(final HttpParams params)
Returns lookup interface for maximum number of connections allowed per route.
intgetMaxTotalConnections(final HttpParams params)
Gets the maximum number of connections allowed.
longgetTimeout(final HttpParams params)
Returns the timeout in milliseconds used when retrieving a org.apache.http.conn.ManagedClientConnection from the org.apache.http.conn.ClientConnectionManager .
voidsetMaxConnectionsPerRoute(final HttpParams params, final ConnPerRoute connPerRoute)
Sets lookup interface for maximum number of connections allowed per route.
voidsetMaxTotalConnections(final HttpParams params, final int maxTotalConnections)
Sets the maximum number of connections allowed.
voidsetTimeout(final HttpParams params, final long timeout)
Sets the timeout in milliseconds used when retrieving a org.apache.http.conn.ManagedClientConnection from the org.apache.http.conn.ClientConnectionManager .