| Package | Description |
|---|---|
| io.vertx.axle.core | |
| io.vertx.axle.core.http |
| Modifier and Type | Method and Description |
|---|---|
HttpServer |
Vertx.createHttpServer()
Create an HTTP/HTTPS server using default options
|
HttpServer |
Vertx.createHttpServer(io.vertx.core.http.HttpServerOptions options)
Create an HTTP/HTTPS server using the specified options
|
| Modifier and Type | Field and Description |
|---|---|
static TypeArg<HttpServer> |
HttpServer.__TYPE_ARG |
| Modifier and Type | Method and Description |
|---|---|
HttpServer |
HttpServer.connectionHandler(Consumer<HttpConnection> handler)
Set a connection handler for the server.
|
HttpServer |
HttpServer.exceptionHandler(Consumer<Throwable> handler)
Set an exception handler called for socket errors happening before the HTTP connection
is established, e.g during the TLS handshake.
|
static HttpServer |
HttpServer.newInstance(io.vertx.core.http.HttpServer arg) |
HttpServer |
HttpServer.requestHandler(Consumer<HttpServerRequest> handler)
Set the request handler for the server to
requestHandler. |
HttpServer |
HttpServer.websocketHandler(Consumer<ServerWebSocket> handler)
Set the websocket handler for the server to
wsHandler. |
| Modifier and Type | Method and Description |
|---|---|
CompletionStage<HttpServer> |
HttpServer.listen()
Like
listen(int, java.lang.String) but supplying a handler that will be called when the server is actually listening (or has failed). |
CompletionStage<HttpServer> |
HttpServer.listen(int port)
Like
listen(int, java.lang.String) but supplying a handler that will be called when the server is actually listening (or has failed). |
CompletionStage<HttpServer> |
HttpServer.listen(int port,
String host)
Like
listen(int, java.lang.String) but supplying a handler that will be called when the server is actually
listening (or has failed). |
CompletionStage<HttpServer> |
HttpServer.listen(SocketAddress address)
Tell the server to start listening on the given address supplying
a handler that will be called when the server is actually
listening (or has failed).
|
Copyright © 2019 SmallRye. All rights reserved.