Class Tcp
- All Implemented Interfaces:
Extension
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Represents an accepted incoming TCP connection.static class
Represents a prospective outgoing TCP connection.static final class
Represents a prospective TCP server binding. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic T
apply
(ActorSystem system) static T
apply
(ClassicActorSystemProvider system) Creates aTcp.ServerBinding
without specifying options.bind
(String interface_, int port, int backlog, Iterable<Inet.SocketOption> options, boolean halfClose, Optional<Duration> idleTimeout) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
.bindWithTls
(String interface_, int port, Creator<SSLEngine> createSSLEngine) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
where all incoming and outgoing bytes are passed through TLS.bindWithTls
(String interface_, int port, Creator<SSLEngine> createSSLEngine, int backlog, Iterable<Inet.SocketOption> options, Optional<Duration> idleTimeout, Function<SSLSession, Optional<Throwable>> verifySession, TLSClosing closing) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
where all incoming and outgoing bytes are passed through TLS.static Tcp
createExtension
(ExtendedActorSystem system) static final boolean
static Tcp
get
(ActorSystem system) static Tcp
get
(ClassicActorSystemProvider system) static final int
hashCode()
static Tcp$
lookup()
outgoingConnection
(String host, int port) Creates anTcp.OutgoingConnection
without specifying options.outgoingConnection
(InetSocketAddress remoteAddress, Optional<InetSocketAddress> localAddress, Iterable<Inet.SocketOption> options, boolean halfClose, Optional<Duration> connectTimeout, Optional<Duration> idleTimeout) Creates anTcp.OutgoingConnection
instance representing a prospective TCP client connection to the given endpoint.outgoingConnectionWithTls
(InetSocketAddress remoteAddress, Creator<SSLEngine> createSSLEngine) Creates anTcp.OutgoingConnection
with TLS.outgoingConnectionWithTls
(InetSocketAddress remoteAddress, Creator<SSLEngine> createSSLEngine, Optional<InetSocketAddress> localAddress, Iterable<Inet.SocketOption> options, Optional<Duration> connectTimeout, Optional<Duration> idleTimeout, Function<SSLSession, Optional<Throwable>> verifySession, TLSClosing closing) Creates anTcp.OutgoingConnection
with TLS.
-
Constructor Details
-
Tcp
-
-
Method Details
-
get
-
get
-
lookup
-
createExtension
-
apply
-
apply
-
hashCode
public static final int hashCode() -
equals
-
bind
public Source<Tcp.IncomingConnection,CompletionStage<Tcp.ServerBinding>> bind(String interface_, int port, int backlog, Iterable<Inet.SocketOption> options, boolean halfClose, Optional<Duration> idleTimeout) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
.Please note that the startup of the server is asynchronous, i.e. after materializing the enclosing
pekko.stream.scaladsl.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 onport
- The port to listen onbacklog
- Controls the size of the connection backlogoptions
- TCP options for the connections, seepekko.io.Tcp
for detailshalfClose
- 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.
-
bind
public Source<Tcp.IncomingConnection,CompletionStage<Tcp.ServerBinding>> bind(String interface_, int port) Creates aTcp.ServerBinding
without specifying options. It represents a prospective TCP server binding on the givenendpoint
.Please note that the startup of the server is asynchronous, i.e. after materializing the enclosing
pekko.stream.scaladsl.RunnableGraph
the server is not immediately available. Only after the materialized future completes is the server ready to accept client connections. -
outgoingConnection
public Flow<ByteString,ByteString, outgoingConnectionCompletionStage<Tcp.OutgoingConnection>> (InetSocketAddress remoteAddress, Optional<InetSocketAddress> localAddress, Iterable<Inet.SocketOption> options, boolean halfClose, Optional<Duration> connectTimeout, Optional<Duration> idleTimeout) Creates anTcp.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 tolocalAddress
- Optional local address for the connectionoptions
- TCP options for the connections, seepekko.io.Tcp
for detailshalfClose
- 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.
-
outgoingConnection
public Flow<ByteString,ByteString, outgoingConnectionCompletionStage<Tcp.OutgoingConnection>> (String host, int port) Creates anTcp.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. -
outgoingConnectionWithTls
public Flow<ByteString,ByteString, outgoingConnectionWithTlsCompletionStage<Tcp.OutgoingConnection>> (InetSocketAddress remoteAddress, Creator<SSLEngine> createSSLEngine) Creates anTcp.OutgoingConnection
with TLS. The returned flow represents a TCP client connection to the given endpoint where all bytes in and out go through TLS.You specify a factory to create an SSLEngine that must already be configured for client mode and with all the parameters for the first session.
- See Also:
-
Tcp.outgoingConnection
-
outgoingConnectionWithTls
public Flow<ByteString,ByteString, outgoingConnectionWithTlsCompletionStage<Tcp.OutgoingConnection>> (InetSocketAddress remoteAddress, Creator<SSLEngine> createSSLEngine, Optional<InetSocketAddress> localAddress, Iterable<Inet.SocketOption> options, Optional<Duration> connectTimeout, Optional<Duration> idleTimeout, Function<SSLSession, Optional<Throwable>> verifySession, TLSClosing closing) Creates anTcp.OutgoingConnection
with TLS. The returned flow represents a TCP client connection to the given endpoint where all bytes in and out go through TLS.You specify a factory to create an SSLEngine that must already be configured for client mode and with all the parameters for the first session.
- See Also:
-
Tcp.outgoingConnection
-
bindWithTls
public Source<Tcp.IncomingConnection,CompletionStage<Tcp.ServerBinding>> bindWithTls(String interface_, int port, Creator<SSLEngine> createSSLEngine) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
where all incoming and outgoing bytes are passed through TLS.- See Also:
-
Tcp.bind
-
bindWithTls
public Source<Tcp.IncomingConnection,CompletionStage<Tcp.ServerBinding>> bindWithTls(String interface_, int port, Creator<SSLEngine> createSSLEngine, int backlog, Iterable<Inet.SocketOption> options, Optional<Duration> idleTimeout, Function<SSLSession, Optional<Throwable>> verifySession, TLSClosing closing) Creates aTcp.ServerBinding
instance which represents a prospective TCP server binding on the givenendpoint
where all incoming and outgoing bytes are passed through TLS.- See Also:
-
Tcp.bind
-