| Package | Description |
|---|---|
| io.helidon.webserver |
Reactive web server API.
|
| Modifier and Type | Method and Description |
|---|---|
Routing |
Routing.Builder.build()
Builds a new routing instance.
|
| Modifier and Type | Method and 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 the
WebServer. |
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.
|
| Modifier and Type | Method and 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 the
WebServer. |
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.
|
Copyright © 2018–2019 Oracle and/or its affiliates. All rights reserved. Use is subject to license terms.