HttpConnectionParams
and ThreadSafeClientConnManager
.
See individual method descriptions for details@Deprecated @Immutable public final class ConnManagerParams extends Object implements ConnManagerPNames
HttpParams
.ConnManagerPNames
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_MAX_TOTAL_CONNECTIONS
Deprecated.
The default maximum number of connections allowed overall
|
MAX_CONNECTIONS_PER_ROUTE, MAX_TOTAL_CONNECTIONS, TIMEOUT
Constructor and Description |
---|
ConnManagerParams()
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static ConnPerRoute |
getMaxConnectionsPerRoute(org.apache.http.params.HttpParams params)
|
static int |
getMaxTotalConnections(org.apache.http.params.HttpParams params)
Deprecated.
|
static long |
getTimeout(org.apache.http.params.HttpParams params)
Deprecated.
use
HttpConnectionParams.getConnectionTimeout(HttpParams) |
static void |
setMaxConnectionsPerRoute(org.apache.http.params.HttpParams params,
ConnPerRoute connPerRoute)
|
static void |
setMaxTotalConnections(org.apache.http.params.HttpParams params,
int maxTotalConnections)
Deprecated.
|
static void |
setTimeout(org.apache.http.params.HttpParams params,
long timeout)
Deprecated.
use
HttpConnectionParams.setConnectionTimeout(HttpParams, int) |
public static final int DEFAULT_MAX_TOTAL_CONNECTIONS
@Deprecated public static long getTimeout(org.apache.http.params.HttpParams params)
HttpConnectionParams.getConnectionTimeout(HttpParams)
ManagedClientConnection
from the
ClientConnectionManager
.@Deprecated public static void setTimeout(org.apache.http.params.HttpParams params, long timeout)
HttpConnectionParams.setConnectionTimeout(HttpParams, int)
ManagedClientConnection
from the
ClientConnectionManager
.timeout
- the timeout in milliseconds@Deprecated public static void setMaxConnectionsPerRoute(org.apache.http.params.HttpParams params, ConnPerRoute connPerRoute)
ThreadSafeClientConnManager.setMaxForRoute(org.apache.http.conn.routing.HttpRoute, int)
params
- HTTP parametersconnPerRoute
- lookup interface for maximum number of connections allowed
per route@Deprecated public static ConnPerRoute getMaxConnectionsPerRoute(org.apache.http.params.HttpParams params)
params
- HTTP parameters@Deprecated public static void setMaxTotalConnections(org.apache.http.params.HttpParams params, int maxTotalConnections)
ThreadSafeClientConnManager.setMaxTotal(int)
params
- HTTP parametersmaxTotalConnections
- The maximum number of connections allowed.@Deprecated public static int getMaxTotalConnections(org.apache.http.params.HttpParams params)
ThreadSafeClientConnManager.getMaxTotal()
params
- HTTP parametersCopyright © 1999-2012 The Apache Software Foundation. All Rights Reserved.