@Contract(threading=STATELESS) @Internal public interface AsyncClientConnectionOperator
| Modifier and Type | Method and Description |
|---|---|
default Future<ManagedAsyncClientConnection> |
connect(ConnectionInitiator connectionInitiator,
HttpHost endpointHost,
NamedEndpoint endpointName,
SocketAddress localAddress,
Timeout connectTimeout,
Object attachment,
HttpContext context,
FutureCallback<ManagedAsyncClientConnection> callback)
Initiates operation to create a connection to the remote endpoint using
the provided
ConnectionInitiator. |
default Future<ManagedAsyncClientConnection> |
connect(ConnectionInitiator connectionInitiator,
HttpHost endpointHost,
Path unixDomainSocket,
NamedEndpoint endpointName,
SocketAddress localAddress,
Timeout connectTimeout,
Object attachment,
HttpContext context,
FutureCallback<ManagedAsyncClientConnection> callback)
Initiates operation to create a connection to the remote endpoint using
the provided
ConnectionInitiator. |
Future<ManagedAsyncClientConnection> |
connect(ConnectionInitiator connectionInitiator,
HttpHost host,
SocketAddress localAddress,
Timeout connectTimeout,
Object attachment,
FutureCallback<ManagedAsyncClientConnection> callback)
Initiates operation to create a connection to the remote endpoint using
the provided
ConnectionInitiator. |
default void |
upgrade(ManagedAsyncClientConnection conn,
HttpHost endpointHost,
NamedEndpoint endpointName,
Object attachment,
HttpContext context,
FutureCallback<ManagedAsyncClientConnection> callback)
Upgrades transport security of the given managed connection
by using the TLS security protocol.
|
void |
upgrade(ManagedAsyncClientConnection conn,
HttpHost host,
Object attachment)
Upgrades transport security of the given managed connection
by using the TLS security protocol.
|
Future<ManagedAsyncClientConnection> connect(ConnectionInitiator connectionInitiator, HttpHost host, SocketAddress localAddress, Timeout connectTimeout, Object attachment, FutureCallback<ManagedAsyncClientConnection> callback)
ConnectionInitiator.connectionInitiator - the connection initiator.host - the address of the opposite endpoint.localAddress - the address of the local endpoint.connectTimeout - the timeout of the connect operation.attachment - the attachment, which can be any object representing custom parameter
of the operation.callback - the future result callback.default Future<ManagedAsyncClientConnection> connect(ConnectionInitiator connectionInitiator, HttpHost endpointHost, NamedEndpoint endpointName, SocketAddress localAddress, Timeout connectTimeout, Object attachment, HttpContext context, FutureCallback<ManagedAsyncClientConnection> callback)
ConnectionInitiator.connectionInitiator - the connection initiator.endpointHost - the address of the remote endpoint.endpointName - the name of the remote endpoint, if different from the endpoint host name,
null otherwise. Usually taken from the request URU authority.localAddress - the address of the local endpoint.connectTimeout - the timeout of the connect operation.attachment - the attachment, which can be any object representing custom parameter
of the operation.context - the execution context.callback - the future result callback.default Future<ManagedAsyncClientConnection> connect(ConnectionInitiator connectionInitiator, HttpHost endpointHost, Path unixDomainSocket, NamedEndpoint endpointName, SocketAddress localAddress, Timeout connectTimeout, Object attachment, HttpContext context, FutureCallback<ManagedAsyncClientConnection> callback)
ConnectionInitiator.connectionInitiator - the connection initiator.endpointHost - the address of the remote endpoint.unixDomainSocket - the path to the UDS through which to connect, or null.endpointName - the name of the remote endpoint, if different from the endpoint host name,
null otherwise. Usually taken from the request URU authority.localAddress - the address of the local endpoint.connectTimeout - the timeout of the connect operation.attachment - the attachment, which can be any object representing custom parameter
of the operation.context - the execution context.callback - the future result callback.void upgrade(ManagedAsyncClientConnection conn, HttpHost host, Object attachment)
conn - the managed connection.host - the address of the opposite endpoint with TLS security.attachment - the attachment, which can be any object representing custom parameter
of the operation.default void upgrade(ManagedAsyncClientConnection conn, HttpHost endpointHost, NamedEndpoint endpointName, Object attachment, HttpContext context, FutureCallback<ManagedAsyncClientConnection> callback)
conn - the managed connection.endpointHost - the address of the remote endpoint.endpointName - the name of the remote endpoint, if different from the endpoint host name,
null otherwise. Usually taken from the request URU authority.attachment - the attachment, which can be any object representing custom parameter
of the operation.context - the execution context.callback - the future result callback.Copyright © 1999–2021 The Apache Software Foundation. All rights reserved.