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 interfaceServerConfigurationWebServerconfiguration.Fields in io.helidon.webserver declared as SocketConfiguration Modifier and Type Field Description static SocketConfigurationSocketConfiguration. DEFAULTDeprecated.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 SocketConfigurationSocketConfiguration.Builder. build()static SocketConfigurationSocketConfiguration. create(String name)Create a default named configuration.default SocketConfigurationServerConfiguration. socket(String name)Deprecated.since 2.0.0, please useServerConfiguration.namedSocket(String)insteadSocketConfigurationBareRequest. 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_NAMEand also all the additional named server socket configurations.Methods in io.helidon.webserver with parameters of type SocketConfiguration Modifier and Type Method Description ServerConfiguration.BuilderServerConfiguration.Builder. addSocket(String name, SocketConfiguration socketConfiguration)Deprecated.Adds an additional named server socket configuration.WebServer.BuilderWebServer.Builder. addSocket(SocketConfiguration config)Adds an additional named server socket configuration.WebServer.BuilderWebServer.Builder. addSocket(SocketConfiguration socketConfiguration, Routing routing)Add a named socket and routing.WebServer.BuilderWebServer.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.BuilderServerConfiguration.Builder. addSocket(String name, Supplier<SocketConfiguration> socketConfigurationBuilder)Deprecated.Adds an additional named server socket configuration builder.WebServer.BuilderWebServer.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.BuilderWebServer.Builder. addSocket(Supplier<SocketConfiguration> socketConfigurationBuilder)Adds an additional named server socket configuration builder.
-