Interface HttpClientConnectionOperator

All Known Implementing Classes:
DefaultHttpClientConnectionOperator

@Contract(threading=STATELESS) @Internal public interface HttpClientConnectionOperator
Connection operator that performs connection connect and upgrade operations.
Since:
4.4
  • Method Summary

    Modifier and Type
    Method
    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.
    default void
    connect(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, InetSocketAddress localAddress, org.apache.hc.core5.util.Timeout connectTimeout, org.apache.hc.core5.http.io.SocketConfig socketConfig, Object attachment, org.apache.hc.core5.http.protocol.HttpContext context)
    Connect the given managed connection to the remote endpoint.
    default void
    connect(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, Path unixDomainSocket, InetSocketAddress localAddress, org.apache.hc.core5.util.Timeout connectTimeout, org.apache.hc.core5.http.io.SocketConfig socketConfig, Object attachment, 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.
    default void
    upgrade(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, Object attachment, org.apache.hc.core5.http.protocol.HttpContext context)
    Upgrades transport security of the given managed connection by using the TLS security protocol.
  • Method Details

    • connect

      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
      Connect the given managed connection to the remote endpoint.
      Parameters:
      conn - 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.
      Throws:
      IOException
    • connect

      default void connect(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, InetSocketAddress localAddress, org.apache.hc.core5.util.Timeout connectTimeout, org.apache.hc.core5.http.io.SocketConfig socketConfig, Object attachment, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
      Connect the given managed connection to the remote endpoint.
      Parameters:
      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.
      localAddress - the address of the local endpoint.
      connectTimeout - the timeout of the connect operation.
      socketConfig - the socket configuration.
      attachment - connect request attachment.
      context - the execution context.
      Throws:
      IOException
      Since:
      5.4
    • connect

      default void connect(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, Path unixDomainSocket, InetSocketAddress localAddress, org.apache.hc.core5.util.Timeout connectTimeout, org.apache.hc.core5.http.io.SocketConfig socketConfig, Object attachment, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
      Connect the given managed connection to the remote endpoint.
      Parameters:
      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.
      unixDomainSocket - the path to the Unix domain socket, or null if none.
      localAddress - the address of the local endpoint.
      connectTimeout - the timeout of the connect operation.
      socketConfig - the socket configuration.
      attachment - connect request attachment.
      context - the execution context.
      Throws:
      IOException
      Since:
      5.6
    • upgrade

      void upgrade(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost host, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
      Upgrades transport security of the given managed connection by using the TLS security protocol.
      Parameters:
      conn - the managed connection.
      host - the address of the opposite endpoint with TLS security.
      context - the execution context.
      Throws:
      IOException
    • upgrade

      default void upgrade(ManagedHttpClientConnection conn, org.apache.hc.core5.http.HttpHost endpointHost, org.apache.hc.core5.net.NamedEndpoint endpointName, Object attachment, org.apache.hc.core5.http.protocol.HttpContext context) throws IOException
      Upgrades transport security of the given managed connection by using the TLS security protocol.
      Parameters:
      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 - connect request attachment.
      context - the execution context.
      Throws:
      IOException
      Since:
      5.2