Class Tcp

  • All Implemented Interfaces:
    Extension

    public class Tcp
    extends java.lang.Object
    implements Extension
    Creates a Tcp.ServerBinding instance which represents a prospective TCP server binding on the given endpoint.

    Please note that the startup of the server is asynchronous, i.e. after materializing the enclosing RunnableGraph the server is not immediately available. Only after the materialized future completes is the server ready to accept client connections.

    param: interface The interface to listen on param: port The port to listen on param: backlog Controls the size of the connection backlog param: options TCP options for the connections, see Tcp for details param: halfClose Controls whether the connection is kept open even after writing has been completed to the accepted TCP connections. If set to true, the connection will implement the TCP half-close mechanism, allowing the client to write to the connection even after the server has finished writing. The TCP socket is only closed after both the client and server finished writing. If set to false, the connection will immediately closed once the server closes its write side, independently whether the client is still attempting to write. This setting is recommended for servers, and therefore it is the default setting.

    • Method Detail

      • lookup

        public static Tcp$ lookup()
      • apply

        public static T apply​(ActorSystem system)
      • hashCode

        public static final int hashCode()
      • equals

        public static final boolean equals​(java.lang.Object other)
      • bind

        public Source<Tcp.IncomingConnection,​java.util.concurrent.CompletionStage<Tcp.ServerBinding>> bind​(java.lang.String interface_,
                                                                                                                 int port,
                                                                                                                 int backlog,
                                                                                                                 java.lang.Iterable<Inet.SocketOption> options,
                                                                                                                 boolean halfClose,
                                                                                                                 scala.concurrent.duration.Duration idleTimeout)
        Creates a Tcp.ServerBinding instance which represents a prospective TCP server binding on the given endpoint.

        Please note that the startup of the server is asynchronous, i.e. after materializing the enclosing RunnableGraph the server is not immediately available. Only after the materialized future completes is the server ready to accept client connections.

        Parameters:
        interface - The interface to listen on
        port - The port to listen on
        backlog - Controls the size of the connection backlog
        options - TCP options for the connections, see Tcp for details
        halfClose - Controls whether the connection is kept open even after writing has been completed to the accepted TCP connections. If set to true, the connection will implement the TCP half-close mechanism, allowing the client to write to the connection even after the server has finished writing. The TCP socket is only closed after both the client and server finished writing. If set to false, the connection will immediately closed once the server closes its write side, independently whether the client is still attempting to write. This setting is recommended for servers, and therefore it is the default setting.
        interface_ - (undocumented)
        idleTimeout - (undocumented)
        Returns:
        (undocumented)
      • bind

        public Source<Tcp.IncomingConnection,​java.util.concurrent.CompletionStage<Tcp.ServerBinding>> bind​(java.lang.String interface_,
                                                                                                                 int port)
        Creates a Tcp.ServerBinding without specifying options. It represents a prospective TCP server binding on the given endpoint.

        Please note that the startup of the server is asynchronous, i.e. after materializing the enclosing RunnableGraph the server is not immediately available. Only after the materialized future completes is the server ready to accept client connections.

        Parameters:
        interface_ - (undocumented)
        port - (undocumented)
        Returns:
        (undocumented)
      • outgoingConnection

        public Flow<ByteString,​ByteString,​java.util.concurrent.CompletionStage<Tcp.OutgoingConnection>> outgoingConnection​(java.net.InetSocketAddress remoteAddress,
                                                                                                                                       java.util.Optional<java.net.InetSocketAddress> localAddress,
                                                                                                                                       java.lang.Iterable<Inet.SocketOption> options,
                                                                                                                                       boolean halfClose,
                                                                                                                                       scala.concurrent.duration.Duration connectTimeout,
                                                                                                                                       scala.concurrent.duration.Duration idleTimeout)
        Creates an Tcp.OutgoingConnection instance representing a prospective TCP client connection to the given endpoint.

        Note that the ByteString chunk boundaries are not retained across the network, to achieve application level chunks you have to introduce explicit framing in your streams, for example using the Framing operators.

        Parameters:
        remoteAddress - The remote address to connect to
        localAddress - Optional local address for the connection
        options - TCP options for the connections, see Tcp for details
        halfClose - Controls whether the connection is kept open even after writing has been completed to the accepted TCP connections. If set to true, the connection will implement the TCP half-close mechanism, allowing the server to write to the connection even after the client has finished writing. The TCP socket is only closed after both the client and server finished writing. This setting is recommended for clients and therefore it is the default setting. If set to false, the connection will immediately closed once the client closes its write side, independently whether the server is still attempting to write.
        connectTimeout - (undocumented)
        idleTimeout - (undocumented)
        Returns:
        (undocumented)
      • outgoingConnection

        public Flow<ByteString,​ByteString,​java.util.concurrent.CompletionStage<Tcp.OutgoingConnection>> outgoingConnection​(java.lang.String host,
                                                                                                                                       int port)
        Creates an Tcp.OutgoingConnection without specifying options. It represents a prospective TCP client connection to the given endpoint.

        Note that the ByteString chunk boundaries are not retained across the network, to achieve application level chunks you have to introduce explicit framing in your streams, for example using the Framing operators.

        Parameters:
        host - (undocumented)
        port - (undocumented)
        Returns:
        (undocumented)
      • outgoingTlsConnection

        public Flow<ByteString,​ByteString,​java.util.concurrent.CompletionStage<Tcp.OutgoingConnection>> outgoingTlsConnection​(java.lang.String host,
                                                                                                                                          int port,
                                                                                                                                          javax.net.ssl.SSLContext sslContext,
                                                                                                                                          TLSProtocol.NegotiateNewSession negotiateNewSession)
        Creates an Tcp.OutgoingConnection with TLS. The returned flow represents a TCP client connection to the given endpoint where all bytes in and out go through TLS.

        Parameters:
        host - (undocumented)
        port - (undocumented)
        sslContext - (undocumented)
        negotiateNewSession - (undocumented)
        Returns:
        (undocumented)
      • outgoingTlsConnection

        public Flow<ByteString,​ByteString,​java.util.concurrent.CompletionStage<Tcp.OutgoingConnection>> outgoingTlsConnection​(java.net.InetSocketAddress remoteAddress,
                                                                                                                                          javax.net.ssl.SSLContext sslContext,
                                                                                                                                          TLSProtocol.NegotiateNewSession negotiateNewSession,
                                                                                                                                          java.util.Optional<java.net.InetSocketAddress> localAddress,
                                                                                                                                          java.lang.Iterable<Inet.SocketOption> options,
                                                                                                                                          scala.concurrent.duration.Duration connectTimeout,
                                                                                                                                          scala.concurrent.duration.Duration idleTimeout)
        Creates an Tcp.OutgoingConnection with TLS. The returned flow represents a TCP client connection to the given endpoint where all bytes in and out go through TLS.

        Parameters:
        remoteAddress - (undocumented)
        sslContext - (undocumented)
        negotiateNewSession - (undocumented)
        localAddress - (undocumented)
        options - (undocumented)
        connectTimeout - (undocumented)
        idleTimeout - (undocumented)
        Returns:
        (undocumented)
      • bindTls

        public Source<Tcp.IncomingConnection,​java.util.concurrent.CompletionStage<Tcp.ServerBinding>> bindTls​(java.lang.String interface_,
                                                                                                                    int port,
                                                                                                                    javax.net.ssl.SSLContext sslContext,
                                                                                                                    TLSProtocol.NegotiateNewSession negotiateNewSession,
                                                                                                                    int backlog,
                                                                                                                    java.lang.Iterable<Inet.SocketOption> options,
                                                                                                                    boolean halfClose,
                                                                                                                    scala.concurrent.duration.Duration idleTimeout)
        Creates a Tcp.ServerBinding instance which represents a prospective TCP server binding on the given endpoint where all incoming and outgoing bytes are passed through TLS.

        Parameters:
        interface_ - (undocumented)
        port - (undocumented)
        sslContext - (undocumented)
        negotiateNewSession - (undocumented)
        backlog - (undocumented)
        options - (undocumented)
        halfClose - (undocumented)
        idleTimeout - (undocumented)
        Returns:
        (undocumented)
      • bindTls

        public Source<Tcp.IncomingConnection,​java.util.concurrent.CompletionStage<Tcp.ServerBinding>> bindTls​(java.lang.String interface_,
                                                                                                                    int port,
                                                                                                                    javax.net.ssl.SSLContext sslContext,
                                                                                                                    TLSProtocol.NegotiateNewSession negotiateNewSession)
        Creates a Tcp.ServerBinding instance which represents a prospective TCP server binding on the given endpoint where all incoming and outgoing bytes are passed through TLS.

        Parameters:
        interface_ - (undocumented)
        port - (undocumented)
        sslContext - (undocumented)
        negotiateNewSession - (undocumented)
        Returns:
        (undocumented)