java.lang.Object | |
↳ | org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager |
Manages a pool of client connections
and
is able to service connection requests from multiple execution threads.
Connections are pooled on a per route basis. A request for a route which
already the manager has persistent connections for available in the pool
will be services by leasing a connection from the pool rather than
creating a brand new connection.
ThreadSafeClientConnManager maintains a maximum limit of connection on a per route basis and in total. Per default this implementation will create no more than than 2 concurrent connections per given route and no more 20 connections in total. For many real-world applications these limits may prove too constraining, especially if they use HTTP as a transport protocol for their services. Connection limits, however, can be adjusted using HTTP parameters.
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
connOperator | The operator for opening and updating connections. | ||||||||||
connPerRoute | |||||||||||
connectionPool | |||||||||||
pool | The pool of connections being managed. | ||||||||||
schemeRegistry | The schemes supported by this connection manager. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Creates a new thread safe connection manager.
| |||||||||||
Creates a new thread safe connection manager.
| |||||||||||
This constructor is deprecated.
use
ThreadSafeClientConnManager(SchemeRegistry)
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Closes all expired connections in the pool.
| |||||||||||
Closes idle connections in the pool.
| |||||||||||
Gets the total number of pooled connections for the given route.
| |||||||||||
Gets the total number of pooled connections.
| |||||||||||
since 4.1
| |||||||||||
Obtains the scheme registry used by this manager.
| |||||||||||
Releases a connection for use by others.
| |||||||||||
Returns a new
ClientConnectionRequest , from which a
ManagedClientConnection can be obtained or the request can be
aborted. | |||||||||||
since 4.1
| |||||||||||
Shuts down this connection manager and releases allocated resources.
|
Protected Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Hook for creating the connection operator.
| |||||||||||
This method is deprecated.
use #createConnectionPool(long, TimeUnit))
| |||||||||||
Hook for creating the connection pool.
| |||||||||||
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
org.apache.http.conn.ClientConnectionManager
|
The operator for opening and updating connections.
The schemes supported by this connection manager.
Creates a new thread safe connection manager.
schreg | the scheme registry. |
---|
Creates a new thread safe connection manager.
schreg | the scheme registry. |
---|---|
connTTL | max connection lifetime, <=0 implies "infinity" |
connTTLTimeUnit | TimeUnit of connTTL |
This constructor is deprecated.
use ThreadSafeClientConnManager(SchemeRegistry)
Creates a new thread safe connection manager.
params | the parameters for this manager. |
---|---|
schreg | the scheme registry. |
Closes all expired connections in the pool. Open connections in the pool that have not been used for the timespan defined when the connection was released will be closed. Currently allocated connections are not subject to this method. Times will be checked with milliseconds precision.
Closes idle connections in the pool. Open connections in the pool that have not been used for the timespan given by the argument will be closed. Currently allocated connections are not subject to this method. Times will be checked with milliseconds precision All expired connections will also be closed.
idleTimeout | the idle time of connections to be closed |
---|---|
tunit | the unit for the idletime |
Gets the total number of pooled connections for the given route. This is the total number of connections that have been created and are still in use by this connection manager for the route. This value will not exceed the maximum number of connections per host.
route | the route in question |
---|
Gets the total number of pooled connections. This is the total number of connections that have been created and are still in use by this connection manager. This value will not exceed the maximum number of connections in total.
Obtains the scheme registry used by this manager.
null
Releases a connection for use by others. You may optionally specify how long the connection is valid to be reused. Values <= 0 are considered to be valid forever. If the connection is not marked as reusable, the connection will not be reused regardless of the valid duration. If the connection has been released before, the call will be ignored.
conn | the connection to release |
---|---|
validDuration | the duration of time this connection is valid for reuse |
timeUnit | the unit of time validDuration is measured in |
Returns a new ClientConnectionRequest
, from which a
ManagedClientConnection
can be obtained or the request can be
aborted.
Shuts down this connection manager and releases allocated resources. This includes closing all connections, whether they are currently used or not.
Hook for creating the connection operator.
It is called by the constructor.
Derived classes can override this method to change the
instantiation of the operator.
The default implementation here instantiates
DefaultClientConnectionOperator
.
schreg | the scheme registry. |
---|
This method is deprecated.
use #createConnectionPool(long, TimeUnit))
Hook for creating the connection pool.
Hook for creating the connection pool.