org.apache.http.impl.conn
Class BasicClientConnectionManager

java.lang.Object
  extended by org.apache.http.impl.conn.BasicClientConnectionManager
All Implemented Interfaces:
ClientConnectionManager

Deprecated. (4.3) use BasicHttpClientConnectionManager.

@Contract(threading=SAFE)
@Deprecated
public class BasicClientConnectionManager
extends Object
implements ClientConnectionManager

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
static String MISUSE_MESSAGE
          Deprecated. The message to be logged on multiple allocation.
 
Constructor Summary
BasicClientConnectionManager()
          Deprecated.  
BasicClientConnectionManager(SchemeRegistry schreg)
          Deprecated. Creates a new simple connection manager.
 
Method Summary
 void closeExpiredConnections()
          Deprecated. Closes all expired connections in the pool.
 void closeIdleConnections(long idletime, TimeUnit timeUnit)
          Deprecated. Closes idle connections in the pool.
protected  ClientConnectionOperator createConnectionOperator(SchemeRegistry schreg)
          Deprecated.  
protected  void finalize()
          Deprecated.  
 SchemeRegistry getSchemeRegistry()
          Deprecated. Obtains the scheme registry used by this manager.
 void releaseConnection(ManagedClientConnection conn, long keepalive, TimeUnit timeUnit)
          Deprecated. Releases a connection for use by others.
 ClientConnectionRequest requestConnection(HttpRoute route, Object state)
          Deprecated. Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.
 void shutdown()
          Deprecated. Shuts down this connection manager and releases allocated resources.
 
Methods inherited from class java.lang.Object
clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

MISUSE_MESSAGE

public static final String MISUSE_MESSAGE
Deprecated. 
The message to be logged on multiple allocation.

See Also:
Constant Field Values
Constructor Detail

BasicClientConnectionManager

public BasicClientConnectionManager(SchemeRegistry schreg)
Deprecated. 
Creates a new simple connection manager.

Parameters:
schreg - the scheme registry

BasicClientConnectionManager

public BasicClientConnectionManager()
Deprecated. 
Method Detail

finalize

protected void finalize()
                 throws Throwable
Deprecated. 
Overrides:
finalize in class Object
Throws:
Throwable

getSchemeRegistry

public SchemeRegistry getSchemeRegistry()
Deprecated. 
Description copied from interface: ClientConnectionManager
Obtains the scheme registry used by this manager.

Specified by:
getSchemeRegistry in interface ClientConnectionManager
Returns:
the scheme registry, never null

createConnectionOperator

protected ClientConnectionOperator createConnectionOperator(SchemeRegistry schreg)
Deprecated. 

requestConnection

public final ClientConnectionRequest requestConnection(HttpRoute route,
                                                       Object state)
Deprecated. 
Description copied from interface: ClientConnectionManager
Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.

Specified by:
requestConnection in interface ClientConnectionManager

releaseConnection

public void releaseConnection(ManagedClientConnection conn,
                              long keepalive,
                              TimeUnit timeUnit)
Deprecated. 
Description copied from interface: ClientConnectionManager
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.

Specified by:
releaseConnection in interface ClientConnectionManager
Parameters:
conn - the connection to release
keepalive - the duration of time this connection is valid for reuse
timeUnit - the unit of time validDuration is measured in
See Also:
ClientConnectionManager.closeExpiredConnections()

closeExpiredConnections

public void closeExpiredConnections()
Deprecated. 
Description copied from interface: ClientConnectionManager
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.

Specified by:
closeExpiredConnections in interface ClientConnectionManager

closeIdleConnections

public void closeIdleConnections(long idletime,
                                 TimeUnit timeUnit)
Deprecated. 
Description copied from interface: ClientConnectionManager
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.

Specified by:
closeIdleConnections in interface ClientConnectionManager
Parameters:
idletime - the idle time of connections to be closed
timeUnit - the unit for the idletime
See Also:
ClientConnectionManager.closeExpiredConnections()

shutdown

public void shutdown()
Deprecated. 
Description copied from interface: ClientConnectionManager
Shuts down this connection manager and releases allocated resources. This includes closing all connections, whether they are currently used or not.

Specified by:
shutdown in interface ClientConnectionManager


Copyright © 1999–2019 The Apache Software Foundation. All rights reserved.