Class SingleClientConnManager
- All Implemented Interfaces:
ClientConnectionManager
public class SingleClientConnManager extends Object implements ClientConnectionManager
warning is logged
and the previously issued connection is revoked.
This class is derived from SimpleHttpConnectionManager
in HttpClient 3. See there for original authors.
- Since:
- 4.0
- Version:
- $Revision: 673450 $
- Author:
- Roland Weber, Michael Becke
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected classSingleClientConnManager.ConnAdapterThe connection adapter used by this manager.protected classSingleClientConnManager.PoolEntryThe pool entry for this connection manager. -
Field Summary
Fields Modifier and Type Field Description protected booleanalwaysShutDownWhether the connection should be shut down on release.protected longconnectionExpiresTimeThe time the last released connection expires and shouldn't be reused.protected ClientConnectionOperatorconnOperatorThe operator for opening and updating connections.protected booleanisShutDownIndicates whether this connection manager is shut down.protected longlastReleaseTimeThe time of the last connection release, or -1.protected SingleClientConnManager.ConnAdaptermanagedConnThe currently issued managed connection, if any.static StringMISUSE_MESSAGEThe message to be logged on multiple allocation.protected SchemeRegistryschemeRegistryThe schemes supported by this connection manager.protected SingleClientConnManager.PoolEntryuniquePoolEntryThe one and only entry in this pool. -
Constructor Summary
Constructors Constructor Description SingleClientConnManager(HttpParams params, SchemeRegistry schreg)Creates a new simple connection manager. -
Method Summary
Modifier and Type Method Description protected voidassertStillUp()Asserts that this manager is not shut down.voidcloseExpiredConnections()Closes all expired connections in the pool.voidcloseIdleConnections(long idletime, TimeUnit tunit)Closes idle connections in the pool.protected ClientConnectionOperatorcreateConnectionOperator(SchemeRegistry schreg)Hook for creating the connection operator.protected voidfinalize()Invoked when the garbage collector has detected that this instance is no longer reachable.ManagedClientConnectiongetConnection(HttpRoute route, Object state)Obtains a connection.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.protected voidrevokeConnection()Revokes the currently issued connection.voidshutdown()Shuts down this connection manager and releases allocated resources.
-
Field Details
-
MISUSE_MESSAGE
The message to be logged on multiple allocation.- See Also:
- Constant Field Values
-
schemeRegistry
The schemes supported by this connection manager. -
connOperator
The operator for opening and updating connections. -
uniquePoolEntry
The one and only entry in this pool. -
managedConn
The currently issued managed connection, if any. -
lastReleaseTime
protected long lastReleaseTimeThe time of the last connection release, or -1. -
connectionExpiresTime
protected long connectionExpiresTimeThe time the last released connection expires and shouldn't be reused. -
alwaysShutDown
protected boolean alwaysShutDownWhether the connection should be shut down on release. -
isShutDown
protected volatile boolean isShutDownIndicates whether this connection manager is shut down.
-
-
Constructor Details
-
SingleClientConnManager
Creates a new simple connection manager.- Parameters:
params- the parameters for this managerschreg- the scheme registry
-
-
Method Details
-
finalize
Description copied from class:ObjectInvoked when the garbage collector has detected that this instance is no longer reachable. The default implementation does nothing, but this method can be overridden to free resources.Note that objects that override
finalizeare significantly more expensive than objects that don't. Finalizers may be run a long time after the object is no longer reachable, depending on memory pressure, so it's a bad idea to rely on them for cleanup. Note also that finalizers are run on a single VM-wide finalizer thread, so doing blocking work in a finalizer is a bad idea. A finalizer is usually only necessary for a class that has a native peer and needs to call a native method to destroy that peer. Even then, it's better to provide an explicitclosemethod (and implementCloseable), and insist that callers manually dispose of instances. This works well for something like files, but less well for something like aBigIntegerwhere typical calling code would have to deal with lots of temporaries. Unfortunately, code that creates lots of temporaries is the worst kind of code from the point of view of the single finalizer thread.If you must use finalizers, consider at least providing your own
ReferenceQueueand having your own thread process that queue.Unlike constructors, finalizers are not automatically chained. You are responsible for calling
super.finalize()yourself.Uncaught exceptions thrown by finalizers are ignored and do not terminate the finalizer thread. See Effective Java Item 7, "Avoid finalizers" for more.
-
getSchemeRegistry
Description copied from interface:ClientConnectionManagerObtains the scheme registry used by this manager.- Specified by:
getSchemeRegistryin interfaceClientConnectionManager- Returns:
- the scheme registry, never
null
-
createConnectionOperator
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 instantiatesDefaultClientConnectionOperator.- Parameters:
schreg- the scheme registry to use, ornull- Returns:
- the connection operator to use
-
assertStillUp
Asserts that this manager is not shut down.- Throws:
IllegalStateException- if this manager is shut down
-
requestConnection
Description copied from interface:ClientConnectionManagerReturns a newClientConnectionRequest, from which aManagedClientConnectioncan be obtained or the request can be aborted.- Specified by:
requestConnectionin interfaceClientConnectionManager
-
getConnection
Obtains a connection. This method does not block.- Parameters:
route- where the connection should point to- Returns:
- a connection that can be used to communicate along the given route
-
releaseConnection
Description copied from interface:ClientConnectionManagerReleases 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.- Specified by:
releaseConnectionin interfaceClientConnectionManager- 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:
ClientConnectionManager.closeExpiredConnections()
-
closeExpiredConnections
public void closeExpiredConnections()Description copied from interface:ClientConnectionManagerCloses 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.- Specified by:
closeExpiredConnectionsin interfaceClientConnectionManager
-
closeIdleConnections
Description copied from interface:ClientConnectionManagerCloses 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.- Specified by:
closeIdleConnectionsin interfaceClientConnectionManager- Parameters:
idletime- the idle time of connections to be closedtunit- the unit for theidletime- See Also:
ClientConnectionManager.closeExpiredConnections()
-
shutdown
public void shutdown()Description copied from interface:ClientConnectionManagerShuts down this connection manager and releases allocated resources. This includes closing all connections, whether they are currently used or not.- Specified by:
shutdownin interfaceClientConnectionManager
-
revokeConnection
protected void revokeConnection()Revokes the currently issued connection. The adapter gets disconnected, the connection will be shut down.
-