@Internal @Contract(threading=STATELESS) public class DefaultHttpClientConnectionOperator extends Object implements HttpClientConnectionOperator
HttpClientConnectionOperator used as default in Http client,
 when no instance provided by user to BasicHttpClientConnectionManager or PoolingHttpClientConnectionManager constructor.| Constructor and Description | 
|---|
| DefaultHttpClientConnectionOperator(org.apache.hc.core5.http.config.Lookup<ConnectionSocketFactory> socketFactoryRegistry,
                                   SchemePortResolver schemePortResolver,
                                   DnsResolver dnsResolver) | 
| Modifier and Type | Method and Description | 
|---|---|
| void | connect(ManagedHttpClientConnection conn,
       org.apache.hc.core5.http.HttpHost host,
       InetSocketAddress localAddress,
       org.apache.hc.core5.util.TimeValue connectTimeout,
       org.apache.hc.core5.http.io.SocketConfig socketConfig,
       org.apache.hc.core5.http.protocol.HttpContext context)Connect the given managed connection to the remote endpoint. | 
| void | upgrade(ManagedHttpClientConnection conn,
       org.apache.hc.core5.http.HttpHost host,
       org.apache.hc.core5.http.protocol.HttpContext context)Upgrades transport security of the given managed connection
 by using the TLS security protocol. | 
public DefaultHttpClientConnectionOperator(org.apache.hc.core5.http.config.Lookup<ConnectionSocketFactory> socketFactoryRegistry, SchemePortResolver schemePortResolver, DnsResolver dnsResolver)
public void connect(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost host, InetSocketAddress localAddress, org.apache.hc.core5.util.TimeValue connectTimeout, org.apache.hc.core5.http.io.SocketConfig socketConfig, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
HttpClientConnectionOperatorconnect in interface HttpClientConnectionOperatorconn - the managed connection.host - the address of the opposite endpoint.localAddress - the address of the local endpoint.connectTimeout - the timeout of the connect operation.socketConfig - the socket configuration.context - the execution context.IOExceptionpublic void upgrade(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost host, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
HttpClientConnectionOperatorupgrade in interface HttpClientConnectionOperatorconn - the managed connection.host - the address of the opposite endpoint with TLS security.context - the execution context.IOExceptionCopyright © 1999–2021 The Apache Software Foundation. All rights reserved.