Package org.apache.http.conn
Interface ClientConnectionManager
- All Known Implementing Classes:
SingleClientConnManager,ThreadSafeClientConnManager
public interface ClientConnectionManager
Management interface for
client connections.- Since:
- 4.0
- Version:
- $Revision: 671717 $
- Author:
- Michael Becke, Mike Bowler, Oleg Kalnichevski, Roland Weber
-
Method Summary
Modifier and Type Method Description voidcloseExpiredConnections()Closes all expired connections in the pool.voidcloseIdleConnections(long idletime, TimeUnit tunit)Closes idle connections in the pool.SchemeRegistrygetSchemeRegistry()Obtains the scheme registry used by this manager.voidreleaseConnection(ManagedClientConnection conn, long validDuration, TimeUnit timeUnit)Releases a connection for use by others.ClientConnectionRequestrequestConnection(HttpRoute route, Object state)Returns a newClientConnectionRequest, from which aManagedClientConnectioncan be obtained or the request can be aborted.voidshutdown()Shuts down this connection manager and releases allocated resources.
-
Method Details
-
getSchemeRegistry
SchemeRegistry getSchemeRegistry()Obtains the scheme registry used by this manager.- Returns:
- the scheme registry, never
null
-
requestConnection
Returns a newClientConnectionRequest, from which aManagedClientConnectioncan be obtained or the request can be aborted. -
releaseConnection
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 releasevalidDuration- the duration of time this connection is valid for reusetimeUnit- the unit of time validDuration is measured in- See Also:
closeExpiredConnections()
-
closeIdleConnections
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:
idletime- the idle time of connections to be closedtunit- the unit for theidletime- See Also:
closeExpiredConnections()
-
closeExpiredConnections
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. -
shutdown
void shutdown()Shuts down this connection manager and releases allocated resources. This includes closing all connections, whether they are currently used or not.
-