Uses of Class
io.helidon.webserver.ServerConfiguration.Builder
Packages that use ServerConfiguration.Builder
-
Uses of ServerConfiguration.Builder in io.helidon.webserver
Methods in io.helidon.webserver that return ServerConfiguration.BuilderModifier and TypeMethodDescriptionServerConfiguration.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, 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.bindAddress(InetAddress bindAddress) Deprecated.Sets a local address for server to bind.static ServerConfiguration.BuilderServerConfiguration.builder()Deprecated.since 2.0.0 - please useWebServer.builder()insteadstatic ServerConfiguration.BuilderDeprecated.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 providedConfigparameter.Deprecated.Configure the application scoped context to be used as a parent for webserver request contexts.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.experimental(ExperimentalConfiguration experimental) Deprecated.Configure experimental features.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.port(int port) Deprecated.Sets server port.ServerConfiguration.Builder.printFeatureDetails(boolean print) Deprecated.Set totrueto 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.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.SetsSSLContextto to use with the server.ServerConfiguration.Builder.ssl(SSLContext sslContext) Deprecated.SetsSSLContextto to use with the server.ServerConfiguration.Builder.timeout(int milliseconds) Deprecated.Sets a socket timeout in milliseconds or0for infinite timeout.Deprecated.ServerConfiguration.Builder.tls(WebServerTls webServerTls) Deprecated.Deprecated.Sets an opentracing.io tracer.Deprecated.Sets an opentracing.io tracer.Deprecated.Configure transport.ServerConfiguration.Builder.workersCount(int workers) Deprecated.Sets a count of threads in pool used to process HTTP requests.Methods in io.helidon.webserver with parameters of type ServerConfiguration.BuilderModifier and TypeMethodDescriptionRouting.Builder.createServer(ServerConfiguration.Builder configurationBuilder) Deprecated.since 2.0.0, please useWebServer.Builder.build()to create a new server, configuring routing usingWebServer.Builder.routing(Routing).
addSocket(String, SocketConfiguration)instead