ServerConfiguration.Builder |
ServerConfiguration.Builder.addRequestedUriDiscoveryType(SocketConfiguration.RequestedUriDiscoveryType type) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.addSocket(String name,
int port,
InetAddress bindAddress) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.addSocket(String name,
SocketConfiguration socketConfiguration) |
Deprecated.
Adds an additional named server socket configuration.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.addSocket(String name,
Supplier<SocketConfiguration> socketConfigurationBuilder) |
Deprecated.
Adds an additional named server socket configuration builder.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.backlog(int size) |
Deprecated.
Sets a maximum length of the queue of incoming connections.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.backpressureBufferSize(long size) |
Deprecated.
Maximum length of the response data sending buffer can keep without flushing.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.backpressureStrategy(BackpressureStrategy backpressureStrategy) |
Deprecated.
Sets a backpressure strategy for the server to apply against user provided response upstream.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.bindAddress(InetAddress bindAddress) |
Deprecated.
Sets a local address for server to bind.
|
static ServerConfiguration.Builder |
ServerConfiguration.builder() |
Deprecated.
|
static ServerConfiguration.Builder |
ServerConfiguration.builder(Config config) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.config(Config config) |
Deprecated.
Sets configuration values included in provided Config parameter.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.connectionIdleTimeout(int seconds) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.context(Context context) |
Deprecated.
Configure the application scoped context to be used as a parent for webserver request contexts.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.continueImmediately(boolean continueImmediately) |
Deprecated.
When true WebServer answers to expect continue with 100 continue immediately,
not waiting for user to actually request the data.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.enableCompression(boolean value) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.enabledSSlProtocols(String... protocols) |
Deprecated.
Configures the SSL protocols to enable with the default server socket.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.enabledSSlProtocols(List<String> protocols) |
Deprecated.
Configures the SSL protocols to enable with the default server socket.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.experimental(ExperimentalConfiguration experimental) |
Deprecated.
Configure experimental features.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.maxHeaderSize(int size) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.maxInitialLineLength(int length) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.maxPayloadSize(long size) |
Deprecated.
Configure maximum client payload size.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.maxShutdownTimeout(Duration maxShutdownTimeout) |
Deprecated.
Configure the maximum amount of time that the server will wait to shut
down regardless of the value of any additionally requested
quiet period.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.port(int port) |
Deprecated.
Sets server port.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.printFeatureDetails(boolean print) |
Deprecated.
Set to true to print detailed feature information on startup.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.receiveBufferSize(int bytes) |
Deprecated.
Propose value of the TCP receive window that is advertised to the remote peer.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.requestedUriDiscoveryEnabled(boolean enabled) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.requestedUriDiscoveryTypes(List<SocketConfiguration.RequestedUriDiscoveryType> types) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.shutdownQuietPeriod(Duration shutdownQuietPeriod) |
Deprecated.
Configure the quiet period during which the webserver will wait for new
incoming connections after it has been told to shut down.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.ssl(Supplier<? extends SSLContext> sslContextBuilder) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.ssl(SSLContext sslContext) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.timeout(int milliseconds) |
Deprecated.
Sets a socket timeout in milliseconds or 0 for infinite timeout.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.timeout(long amount,
TimeUnit unit) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.tls(WebServerTls webServerTls) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.tracer(Tracer tracer) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.tracer(Supplier<? extends Tracer> tracerBuilder) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.transport(Transport transport) |
Deprecated.
Configure transport.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.trustedProxies(AllowList trustedProxies) |
Deprecated.
|
ServerConfiguration.Builder |
ServerConfiguration.Builder.workersCount(int workers) |
Deprecated.
Sets a count of threads in pool used to process HTTP requests.
|