| Package | Description |
|---|---|
| io.helidon.webserver |
Reactive web server API.
|
| io.helidon.webserver.netty |
Netty based implementation of WebServer HTTP IO SPI.
|
| io.helidon.webserver.spi |
WebServer SPI.
|
| Modifier and Type | Method | Description |
|---|---|---|
Routing |
Routing.Builder.build() |
Builds a new routing instance.
|
| Modifier and Type | Method | Description |
|---|---|---|
WebServer.Builder |
WebServer.Builder.addNamedRouting(java.lang.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(Builder<? extends ServerConfiguration> configurationBuilder,
Routing routing) |
Creates a new instance from a provided configuration and a routing.
|
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.
|
| Modifier and Type | Method | Description |
|---|---|---|
WebServer.Builder |
WebServer.Builder.addNamedRouting(java.lang.String name,
Builder<Routing> routingBuilder) |
Associates a dedicated routing with an additional server socket configuration.
|
static WebServer.Builder |
WebServer.builder(Builder<? extends Routing> routingBuilder) |
Creates a builder of the
WebServer. |
static WebServer |
WebServer.create(Builder<? extends Routing> routingBuilder) |
Creates new instance form provided routing and default configuration.
|
static WebServer |
WebServer.create(ServerConfiguration configuration,
Builder<? extends Routing> routingBuilder) |
Creates new instance form provided configuration and routing.
|
| Modifier and Type | Method | Description |
|---|---|---|
WebServer |
Factory.newWebServer(ServerConfiguration configuration,
Routing routing,
java.util.Map<java.lang.String,Routing> namedRoutings) |
| Modifier and Type | Method | Description |
|---|---|---|
WebServer |
Factory.newWebServer(ServerConfiguration configuration,
Routing routing,
java.util.Map<java.lang.String,Routing> namedRoutings) |
| Modifier and Type | Method | Description |
|---|---|---|
WebServer |
WebServerFactory.newWebServer(ServerConfiguration configuration,
Routing routing,
java.util.Map<java.lang.String,Routing> namedRoutings) |
Creates new
WebServer instance form provided configuration and routing. |
| Modifier and Type | Method | Description |
|---|---|---|
WebServer |
WebServerFactory.newWebServer(ServerConfiguration configuration,
Routing routing,
java.util.Map<java.lang.String,Routing> namedRoutings) |
Creates new
WebServer instance form provided configuration and routing. |
Copyright © 2018, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.