Uses of Interface
io.helidon.webserver.SocketConfiguration
-
Uses of SocketConfiguration in io.helidon.webserver
Modifier and TypeMethodDescriptionSocketConfiguration.Builder.build()
static SocketConfiguration
Create a default named configuration.default SocketConfiguration
Deprecated.BareRequest.socketConfiguration()
Configuration of the socket that received this request.Modifier and TypeMethodDescriptiondefault Optional<SocketConfiguration>
ServerConfiguration.namedSocket
(String name) A socket configuration of an additional named server socket.ServerConfiguration.sockets()
A map of all the configured server sockets; that is the default server socket which is identified by the keyWebServer.DEFAULT_SOCKET_NAME
and also all the additional named server socket configurations.Modifier and TypeMethodDescriptionServerConfiguration.Builder.addSocket
(String name, SocketConfiguration socketConfiguration) Deprecated.Adds an additional named server socket configuration.WebServer.Builder.addSocket
(SocketConfiguration config) Adds an additional named server socket configuration.WebServer.Builder.addSocket
(SocketConfiguration socketConfiguration, Routing routing) Add a named socket and routing.Modifier and TypeMethodDescriptionServerConfiguration.Builder.addSocket
(String name, Supplier<SocketConfiguration> socketConfigurationBuilder) Deprecated.Adds an additional named server socket configuration builder.WebServer.Builder.addSocket
(Supplier<SocketConfiguration> socketConfigurationBuilder) Adds an additional named server socket configuration builder.
ServerConfiguration.namedSocket(String)
instead