Uses of Interface
io.helidon.webserver.Routing
-
Packages that use Routing Package Description io.helidon.webserver Reactive web server API. -
-
Uses of Routing in io.helidon.webserver
Methods in io.helidon.webserver that return Routing Modifier and Type Method Description Routing
Routing.Builder. build()
Builds a new routing instance.Methods in io.helidon.webserver with parameters of type Routing Modifier and Type Method Description WebServer.Builder
WebServer.Builder. addNamedRouting(String name, Routing routing)
Associates a dedicated routing with an additional server socket configuration.static WebServer.Builder
WebServer. builder(Routing routing)
Creates a builder of theWebServer
.static WebServer
WebServer. create(Routing routing)
Creates new instance form provided routing and default configuration.static WebServer
WebServer. create(ServerConfiguration configuration, Routing routing)
Creates new instance form provided configuration and routing.static WebServer
WebServer. create(Supplier<? extends ServerConfiguration> configurationBuilder, Routing routing)
Creates a new instance from a provided configuration and a routing.Method parameters in io.helidon.webserver with type arguments of type Routing Modifier and Type Method Description WebServer.Builder
WebServer.Builder. addNamedRouting(String name, Supplier<Routing> routingBuilder)
Associates a dedicated routing with an additional server socket configuration.static WebServer.Builder
WebServer. builder(Supplier<? extends Routing> routingBuilder)
Creates a builder of theWebServer
.static WebServer
WebServer. create(ServerConfiguration configuration, Supplier<? extends Routing> routingBuilder)
Creates new instance form provided configuration and routing.static WebServer
WebServer. create(Supplier<? extends Routing> routingBuilder)
Creates new instance form provided routing and default configuration.
-