public class TcpSO
extends java.lang.Object
Constructor and Description |
---|
TcpSO() |
Modifier and Type | Method and Description |
---|---|
static akka.io.Tcp.SO.KeepAlive |
keepAlive(boolean on)
Inet.SocketOption to enable or disable SO_KEEPALIVE |
static akka.io.Tcp.SO.OOBInline |
oobInline(boolean on)
Inet.SocketOption to enable or disable OOBINLINE (receipt
of TCP urgent data) By default, this option is disabled and TCP urgent
data is silently discarded. |
static akka.io.Inet.SO.ReceiveBufferSize |
receiveBufferSize(int size) |
static akka.io.Inet.SO.ReuseAddress |
reuseAddress(boolean on) |
static akka.io.Inet.SO.SendBufferSize |
sendBufferSize(int size) |
static akka.io.Tcp.SO.TcpNoDelay |
tcpNoDelay(boolean on)
Inet.SocketOption to enable or disable TCP_NODELAY
(disable or enable Nagle's algorithm) |
static akka.io.Inet.SO.TrafficClass |
trafficClass(int tc) |
public static akka.io.Tcp.SO.KeepAlive keepAlive(boolean on)
Inet.SocketOption
to enable or disable SO_KEEPALIVE
For more information see java.net.Socket.setKeepAlive
on
- (undocumented)public static akka.io.Tcp.SO.OOBInline oobInline(boolean on)
Inet.SocketOption
to enable or disable OOBINLINE (receipt
of TCP urgent data) By default, this option is disabled and TCP urgent
data is silently discarded.
For more information see java.net.Socket.setOOBInline
on
- (undocumented)public static akka.io.Tcp.SO.TcpNoDelay tcpNoDelay(boolean on)
Inet.SocketOption
to enable or disable TCP_NODELAY
(disable or enable Nagle's algorithm)
Please note, that TCP_NODELAY is enabled by default.
For more information see java.net.Socket.setTcpNoDelay
on
- (undocumented)public static akka.io.Inet.SO.ReceiveBufferSize receiveBufferSize(int size)
public static akka.io.Inet.SO.ReuseAddress reuseAddress(boolean on)
public static akka.io.Inet.SO.SendBufferSize sendBufferSize(int size)
public static akka.io.Inet.SO.TrafficClass trafficClass(int tc)