public class

ThreadSafeClientConnManager

extends Object
implements ClientConnectionManager
java.lang.Object
   ↳ org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager

Class Overview

Manages a pool of client connections.

This class is derived from MultiThreadedHttpConnectionManager in HttpClient 3. See there for original authors.

Summary

Fields
protected ClientConnectionOperator connOperator The operator for opening and updating connections.
protected final AbstractConnPool connectionPool The pool of connections being managed.
protected SchemeRegistry schemeRegistry The schemes supported by this connection manager.
Public Constructors
ThreadSafeClientConnManager(HttpParams params, SchemeRegistry schreg)
Creates a new thread safe connection manager.
Public Methods
void closeExpiredConnections()
Closes all expired connections in the pool.
void closeIdleConnections(long idleTimeout, TimeUnit tunit)
Closes idle connections in the pool.
int getConnectionsInPool()
Gets the total number of pooled connections.
int getConnectionsInPool(HttpRoute route)
Gets the total number of pooled connections for the given route.
SchemeRegistry getSchemeRegistry()
Obtains the scheme registry used by this manager.
void releaseConnection(ManagedClientConnection conn, long validDuration, TimeUnit timeUnit)
Releases a connection for use by others.
ClientConnectionRequest requestConnection(HttpRoute route, Object state)
Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.
void shutdown()
Shuts down this connection manager and releases allocated resources.
Protected Methods
ClientConnectionOperator createConnectionOperator(SchemeRegistry schreg)
Hook for creating the connection operator.
AbstractConnPool createConnectionPool(HttpParams params)
Hook for creating the connection pool.
void finalize()
Is called before the object's memory is being reclaimed by the VM.
[Expand]
Inherited Methods
From class java.lang.Object
From interface org.apache.http.conn.ClientConnectionManager

Fields

protected ClientConnectionOperator connOperator

The operator for opening and updating connections.

protected final AbstractConnPool connectionPool

The pool of connections being managed.

protected SchemeRegistry schemeRegistry

The schemes supported by this connection manager.

Public Constructors

public ThreadSafeClientConnManager (HttpParams params, SchemeRegistry schreg)

Creates a new thread safe connection manager.

Parameters
params the parameters for this manager
schreg the scheme registry, or null for the default registry

Public Methods

public void closeExpiredConnections ()

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.

public void closeIdleConnections (long idleTimeout, TimeUnit tunit)

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.

Parameters
idleTimeout the idle time of connections to be closed
tunit the unit for the idletime

public int getConnectionsInPool ()

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.

Returns
  • the total number of pooled connections

public int getConnectionsInPool (HttpRoute route)

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.

Parameters
route the route in question
Returns
  • the total number of pooled connections for that route

public SchemeRegistry getSchemeRegistry ()

Obtains the scheme registry used by this manager.

Returns
  • the scheme registry, never null

public void releaseConnection (ManagedClientConnection conn, long validDuration, TimeUnit timeUnit)

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.

Parameters
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

public ClientConnectionRequest requestConnection (HttpRoute route, Object state)

Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.

public void shutdown ()

Shuts down this connection manager and releases allocated resources. This includes closing all connections, whether they are currently used or not.

Protected Methods

protected ClientConnectionOperator createConnectionOperator (SchemeRegistry schreg)

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.

Parameters
schreg the scheme registry to use, or null
Returns
  • the connection operator to use

protected AbstractConnPool createConnectionPool (HttpParams params)

Hook for creating the connection pool.

Returns
  • the connection pool to use

protected void finalize ()

Is called before the object's memory is being reclaimed by the VM. This can only happen once the VM has detected, during a run of the garbage collector, that the object is no longer reachable by any thread of the running application.

The method can be used to free system resources or perform other cleanup before the object is garbage collected. The default implementation of the method is empty, which is also expected by the VM, but subclasses can override finalize() as required. Uncaught exceptions which are thrown during the execution of this method cause it to terminate immediately but are otherwise ignored.

Note that the VM does guarantee that finalize() is called at most once for any object, but it doesn't guarantee when (if at all) finalize() will be called. For example, object B's finalize() can delay the execution of object A's finalize() method and therefore it can delay the reclamation of A's memory. To be safe, use a ReferenceQueue, because it provides more control over the way the VM deals with references during garbage collection.

Throws
Throwable