Uses of Interface
io.helidon.webserver.SocketConfiguration
-
Packages that use SocketConfiguration Package Description io.helidon.webserver Reactive web server API. -
-
Uses of SocketConfiguration in io.helidon.webserver
Subinterfaces of SocketConfiguration in io.helidon.webserver Modifier and Type Interface Description interface
ServerConfiguration
WebServer
configuration.Fields in io.helidon.webserver declared as SocketConfiguration Modifier and Type Field Description static SocketConfiguration
SocketConfiguration. DEFAULT
Deprecated.since 2.0.0 This configuration does not contain a name and will be removedMethods in io.helidon.webserver that return SocketConfiguration Modifier and Type Method Description SocketConfiguration
SocketConfiguration.Builder. build()
static SocketConfiguration
SocketConfiguration. create(String name)
Create a default named configuration.default SocketConfiguration
ServerConfiguration. socket(String name)
Deprecated.since 2.0.0, please useServerConfiguration.namedSocket(String)
insteadSocketConfiguration
BareRequest. socketConfiguration()
Configuration of the socket that received this request.Methods in io.helidon.webserver that return types with arguments of type SocketConfiguration Modifier and Type Method Description default Optional<SocketConfiguration>
ServerConfiguration. namedSocket(String name)
A socket configuration of an additional named server socket.Map<String,SocketConfiguration>
ServerConfiguration. sockets()
A map of all the configured server sockets; that is the default server socket which is identified by the keyServerConfiguration.DEFAULT_SOCKET_NAME
and also all the additional named server socket configurations.Methods in io.helidon.webserver with parameters of type SocketConfiguration Modifier and Type Method Description ServerConfiguration.Builder
ServerConfiguration.Builder. addSocket(String name, SocketConfiguration socketConfiguration)
Deprecated.Adds an additional named server socket configuration.WebServer.Builder
WebServer.Builder. addSocket(SocketConfiguration config)
Adds an additional named server socket configuration.WebServer.Builder
WebServer.Builder. addSocket(SocketConfiguration socketConfiguration, Routing routing)
Add a named socket and routing.WebServer.Builder
WebServer.Builder. addSocket(String name, SocketConfiguration socketConfiguration)
Deprecated.since 2.0.0, please useWebServer.Builder.addSocket(SocketConfiguration)
instead, name is now part of socket configurationMethod parameters in io.helidon.webserver with type arguments of type SocketConfiguration Modifier and Type Method Description ServerConfiguration.Builder
ServerConfiguration.Builder. addSocket(String name, Supplier<SocketConfiguration> socketConfigurationBuilder)
Deprecated.Adds an additional named server socket configuration builder.WebServer.Builder
WebServer.Builder. addSocket(String name, Supplier<SocketConfiguration> socketConfigurationBuilder)
Deprecated.since 2.0.0, please useWebServer.Builder.addSocket(Supplier)
instead, name is now part of socket configurationWebServer.Builder
WebServer.Builder. addSocket(Supplier<SocketConfiguration> socketConfigurationBuilder)
Adds an additional named server socket configuration builder.
-