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
ImmutableWebServer
configuration.Fields in io.helidon.webserver declared as SocketConfiguration Modifier and Type Field Description static SocketConfiguration
SocketConfiguration. DEFAULT
The default socket configuration.Methods in io.helidon.webserver that return SocketConfiguration Modifier and Type Method Description SocketConfiguration
SocketConfiguration.Builder. build()
default SocketConfiguration
ServerConfiguration. socket(String name)
A socket configuration of an additional named server socket.Methods in io.helidon.webserver that return types with arguments of type SocketConfiguration Modifier and Type Method Description 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)
Adds an additional named server socket configuration.Method 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)
Adds an additional named server socket configuration builder.
-