Uses of Class
io.helidon.webserver.ServerConfiguration.Builder
-
Uses of ServerConfiguration.Builder in io.helidon.webserver
Modifier and TypeMethodDescriptionServerConfiguration.Builder.addRequestedUriDiscoveryType
(SocketConfiguration.RequestedUriDiscoveryType type) Deprecated.ServerConfiguration.Builder.addSocket
(String name, int port, InetAddress bindAddress) Deprecated.ServerConfiguration.Builder.addSocket
(String name, SocketConfiguration socketConfiguration) Deprecated.Adds an additional named server socket configuration.ServerConfiguration.Builder.addSocket
(String name, SocketConfiguration.Builder socketConfiguration) Deprecated.Adds an additional named server socket configuration.ServerConfiguration.Builder.addSocket
(String name, Supplier<SocketConfiguration> socketConfigurationBuilder) Deprecated.Adds an additional named server socket configuration builder.ServerConfiguration.Builder.backlog
(int size) Deprecated.Sets a maximum length of the queue of incoming connections.ServerConfiguration.Builder.backpressureBufferSize
(long size) Deprecated.Maximum length of the response data sending buffer can keep without flushing.ServerConfiguration.Builder.backpressureStrategy
(BackpressureStrategy backpressureStrategy) Deprecated.Sets a backpressure strategy for the server to apply against user provided response upstream.ServerConfiguration.Builder.bindAddress
(InetAddress bindAddress) Deprecated.Sets a local address for server to bind.static ServerConfiguration.Builder
ServerConfiguration.builder()
Deprecated.since 2.0.0 - please useWebServer.builder()
insteadstatic ServerConfiguration.Builder
Deprecated.since 2.0.0 - please useWebServer.builder()
, thenWebServer.Builder.config(io.helidon.config.Config)
, orWebServer.create(Routing, io.helidon.config.Config)
Deprecated.Sets configuration values included in providedConfig
parameter.ServerConfiguration.Builder.connectionIdleTimeout
(int seconds) Deprecated.Deprecated.Configure the application scoped context to be used as a parent for webserver request contexts.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.enableCompression
(boolean value) Deprecated.ServerConfiguration.Builder.enabledSSlProtocols
(String... protocols) Deprecated.Configures the SSL protocols to enable with the default server socket.ServerConfiguration.Builder.enabledSSlProtocols
(List<String> protocols) Deprecated.Configures the SSL protocols to enable with the default server socket.ServerConfiguration.Builder.maxHeaderSize
(int size) Deprecated.ServerConfiguration.Builder.maxInitialLineLength
(int length) Deprecated.ServerConfiguration.Builder.maxPayloadSize
(long size) Deprecated.Configure maximum client payload size.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.maxUpgradeContentLength
(int size) Deprecated.Set a maximum length of the content of an upgrade request.ServerConfiguration.Builder.port
(int port) Deprecated.Sets server port.ServerConfiguration.Builder.printFeatureDetails
(boolean print) Deprecated.Set totrue
to print detailed feature information on startup.ServerConfiguration.Builder.receiveBufferSize
(int bytes) Deprecated.Propose value of the TCP receive window that is advertised to the remote peer.ServerConfiguration.Builder.requestedUriDiscoveryEnabled
(boolean enabled) Deprecated.ServerConfiguration.Builder.requestedUriDiscoveryTypes
(List<SocketConfiguration.RequestedUriDiscoveryType> types) Deprecated.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.ssl
(Supplier<? extends SSLContext> sslContextBuilder) Deprecated.SetsSSLContext
to to use with the server.ServerConfiguration.Builder.ssl
(SSLContext sslContext) Deprecated.SetsSSLContext
to to use with the server.ServerConfiguration.Builder.timeout
(int milliseconds) Deprecated.Sets a socket timeout in milliseconds or0
for infinite timeout.Deprecated.ServerConfiguration.Builder.tls
(WebServerTls webServerTls) Deprecated.Deprecated.Sets a tracer.Deprecated.Sets a tracer.Deprecated.Configure transport.ServerConfiguration.Builder.trustedProxies
(AllowList trustedProxies) Deprecated.ServerConfiguration.Builder.workersCount
(int workers) Deprecated.Sets a count of threads in pool used to process HTTP requests.
addSocket(String, SocketConfiguration)
instead