| Package | Description |
|---|---|
| io.helidon.webserver |
Reactive web server API.
|
| Modifier and Type | Method | Description |
|---|---|---|
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(java.net.InetAddress bindAddress) |
Configures local address where the server listens on with the server socket.
|
static SocketConfiguration.Builder |
SocketConfiguration.builder() |
Creates a builder of
SocketConfiguration class. |
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(Builder<? extends javax.net.ssl.SSLContext> sslContextBuilder) |
Configures a
SSLContext to use with the server socket. |
SocketConfiguration.Builder |
SocketConfiguration.Builder.ssl(javax.net.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. |
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.