@Immutable public class SocketConfig extends java.lang.Object implements java.lang.Cloneable
Modifier and Type | Class and Description |
---|---|
static class |
SocketConfig.Builder |
Modifier and Type | Field and Description |
---|---|
static SocketConfig |
DEFAULT |
Constructor and Description |
---|
SocketConfig(int soTimeout,
boolean soReuseAddress,
int soLinger,
boolean soKeepAlive,
boolean tcpNoDelay,
int sndBufSize,
int rcvBufSize,
int backlogSize) |
Modifier and Type | Method and Description |
---|---|
protected SocketConfig |
clone() |
static SocketConfig.Builder |
copy(SocketConfig config) |
static SocketConfig.Builder |
custom() |
int |
getBacklogSize()
Determines the maximum queue length for incoming connection indications
(a request to connect) also known as server socket backlog.
|
int |
getRcvBufSize()
Determines the default value of the
SocketOptions.SO_RCVBUF parameter
for newly created sockets. |
int |
getSndBufSize()
Determines the default value of the
SocketOptions.SO_SNDBUF parameter
for newly created sockets. |
int |
getSoLinger()
Determines the default value of the
SocketOptions.SO_LINGER parameter
for newly created sockets. |
int |
getSoTimeout()
Determines the default socket timeout value for non-blocking I/O operations.
|
boolean |
isSoKeepAlive()
Determines the default value of the
SocketOptions.SO_KEEPALIVE parameter
for newly created sockets. |
boolean |
isSoReuseAddress()
Determines the default value of the
SocketOptions.SO_REUSEADDR parameter
for newly created sockets. |
boolean |
isTcpNoDelay()
Determines the default value of the
SocketOptions.TCP_NODELAY parameter
for newly created sockets. |
java.lang.String |
toString() |
public static final SocketConfig DEFAULT
SocketConfig(int soTimeout, boolean soReuseAddress, int soLinger, boolean soKeepAlive, boolean tcpNoDelay, int sndBufSize, int rcvBufSize, int backlogSize)
public int getSoTimeout()
Default: 0
(no timeout)
SocketOptions.SO_TIMEOUT
public boolean isSoReuseAddress()
SocketOptions.SO_REUSEADDR
parameter
for newly created sockets.
Default: false
SocketOptions.SO_REUSEADDR
parameter.SocketOptions.SO_REUSEADDR
public int getSoLinger()
SocketOptions.SO_LINGER
parameter
for newly created sockets.
Default: -1
SocketOptions.SO_LINGER
parameter.SocketOptions.SO_LINGER
public boolean isSoKeepAlive()
SocketOptions.SO_KEEPALIVE
parameter
for newly created sockets.
Default: -1
SocketOptions.SO_KEEPALIVE
parameter.SocketOptions.SO_KEEPALIVE
public boolean isTcpNoDelay()
SocketOptions.TCP_NODELAY
parameter
for newly created sockets.
Default: false
SocketOptions.TCP_NODELAY
parameter.SocketOptions.TCP_NODELAY
public int getSndBufSize()
SocketOptions.SO_SNDBUF
parameter
for newly created sockets.
Default: 0
(system default)
SocketOptions.SO_SNDBUF
parameter.SocketOptions.SO_SNDBUF
public int getRcvBufSize()
SocketOptions.SO_RCVBUF
parameter
for newly created sockets.
Default: 0
(system default)
SocketOptions.SO_RCVBUF
parameter.SocketOptions.SO_RCVBUF
public int getBacklogSize()
Default: 0
(system default)
protected SocketConfig clone() throws java.lang.CloneNotSupportedException
clone
in class java.lang.Object
java.lang.CloneNotSupportedException
public java.lang.String toString()
toString
in class java.lang.Object
public static SocketConfig.Builder custom()
public static SocketConfig.Builder copy(SocketConfig config)