SocketConfiguration.Builder |
SocketConfiguration.Builder.backlog(int backlog) |
Configures a maximum length of the queue of incoming connections on the server
socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.bindAddress(InetAddress bindAddress) |
Configures local address where the server listens on with the server socket.
|
static SocketConfiguration.Builder |
SocketConfiguration.builder() |
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.enabledSSlProtocols(String... protocols) |
Configures the SSL protocols to enable with the server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.enabledSSlProtocols(List<String> protocols) |
Configures the SSL protocols to enable with the server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.port(int port) |
Configures a server port to listen on with the server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.receiveBufferSize(int receiveBufferSize) |
Configures proposed value of the TCP receive window that is advertised to the remote peer on the
server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.ssl(Supplier<? extends SSLContext> sslContextBuilder) |
Configures a SSLContext to use with the server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.ssl(SSLContext sslContext) |
Configures a SSLContext to use with the server socket.
|
SocketConfiguration.Builder |
SocketConfiguration.Builder.timeoutMillis(int timeoutMillis) |
Configures a server socket timeout in milliseconds or 0 for an infinite timeout.
|