Package org.apache.http.impl.conn
Class BasicClientConnectionManager
java.lang.Object
org.apache.http.impl.conn.BasicClientConnectionManager
- All Implemented Interfaces:
ClientConnectionManager
@Contract(threading=SAFE)
@Deprecated
public class BasicClientConnectionManager
extends Object
implements ClientConnectionManager
Deprecated.
A connection manager for a single connection. This connection manager maintains only one active
connection. Even though this class is fully thread-safe it ought to be used by one execution
thread only, as only one thread a time can lease the connection at a time.
This connection manager will make an effort to reuse the connection for subsequent requests
with the same route. It will, however, close the existing connection and
open it for the given route, if the route of the persistent connection does not match that
of the connection request. If the connection has been already been allocated
IllegalStateException is thrown.
This connection manager implementation should be used inside an EJB container instead of
PoolingClientConnectionManager.
- Since:
- 4.2
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate ManagedClientConnectionImplDeprecated.The currently issued managed connection, if any.private final ClientConnectionOperatorDeprecated.The operator for opening and updating connections.private static final AtomicLongDeprecated.private final org.apache.commons.logging.LogDeprecated.static final StringDeprecated.The message to be logged on multiple allocation.private HttpPoolEntryDeprecated.The one and only entry in this pool.private final SchemeRegistryDeprecated.The schemes supported by this connection manager.private booleanDeprecated.Indicates whether this connection manager is shut down. -
Constructor Summary
ConstructorsConstructorDescriptionDeprecated.Deprecated.Creates a new simple connection manager. -
Method Summary
Modifier and TypeMethodDescriptionprivate voidDeprecated.voidDeprecated.Closes all expired connections in the pool.voidcloseIdleConnections(long idletime, TimeUnit timeUnit) Deprecated.Closes idle connections in the pool.protected ClientConnectionOperatorDeprecated.protected voidfinalize()Deprecated.(package private) ManagedClientConnectiongetConnection(HttpRoute route, Object state) Deprecated.Deprecated.Obtains the scheme registry used by this manager.voidreleaseConnection(ManagedClientConnection conn, long keepalive, TimeUnit timeUnit) Deprecated.Releases a connection for use by others.final ClientConnectionRequestrequestConnection(HttpRoute route, Object state) Deprecated.Returns a newClientConnectionRequest, from which aManagedClientConnectioncan be obtained or the request can be aborted.voidshutdown()Deprecated.Shuts down this connection manager and releases allocated resources.private voidshutdownConnection(org.apache.http.HttpClientConnection conn) Deprecated.
-
Field Details
-
log
private final org.apache.commons.logging.Log logDeprecated. -
COUNTER
Deprecated. -
MISUSE_MESSAGE
Deprecated.The message to be logged on multiple allocation.- See Also:
-
schemeRegistry
Deprecated.The schemes supported by this connection manager. -
connOperator
Deprecated.The operator for opening and updating connections. -
poolEntry
Deprecated.The one and only entry in this pool. -
conn
Deprecated.The currently issued managed connection, if any. -
shutdown
private volatile boolean shutdownDeprecated.Indicates whether this connection manager is shut down.
-
-
Constructor Details
-
BasicClientConnectionManager
Deprecated.Creates a new simple connection manager.- Parameters:
schreg- the scheme registry
-
BasicClientConnectionManager
public BasicClientConnectionManager()Deprecated.
-
-
Method Details
-
finalize
Deprecated. -
getSchemeRegistry
Deprecated.Description copied from interface:ClientConnectionManagerObtains the scheme registry used by this manager.- Specified by:
getSchemeRegistryin interfaceClientConnectionManager- Returns:
- the scheme registry, never
null
-
createConnectionOperator
Deprecated. -
requestConnection
Deprecated.Description copied from interface:ClientConnectionManagerReturns a newClientConnectionRequest, from which aManagedClientConnectioncan be obtained or the request can be aborted.- Specified by:
requestConnectionin interfaceClientConnectionManager
-
assertNotShutdown
private void assertNotShutdown()Deprecated. -
getConnection
Deprecated. -
shutdownConnection
private void shutdownConnection(org.apache.http.HttpClientConnection conn) Deprecated. -
releaseConnection
Deprecated.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 releasekeepalive- the duration of time this connection is valid for reusetimeUnit- the unit of time validDuration is measured in- See Also:
-
closeExpiredConnections
public void closeExpiredConnections()Deprecated.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
Deprecated.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 closedtimeUnit- the unit for theidletime- See Also:
-
shutdown
public void shutdown()Deprecated.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
-
BasicHttpClientConnectionManager.