Uses of Interface
io.helidon.webserver.SocketConfiguration
Packages that use SocketConfiguration
-
Uses of SocketConfiguration in io.helidon.webserver
Subinterfaces of SocketConfiguration in io.helidon.webserverMethods in io.helidon.webserver that return SocketConfigurationModifier and TypeMethodDescriptionSocketConfiguration.Builder.build()static SocketConfigurationCreate a default named configuration.default SocketConfigurationDeprecated.BareRequest.socketConfiguration()Configuration of the socket that received this request.Methods in io.helidon.webserver that return types with arguments of type SocketConfigurationModifier 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_NAMEand also all the additional named server socket configurations.Methods in io.helidon.webserver with parameters of type SocketConfigurationModifier 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.Method parameters in io.helidon.webserver with type arguments of type SocketConfigurationModifier 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