Uses of Class
io.vertx.mutiny.core.http.HttpServer
-
Packages that use HttpServer Package Description io.vertx.mutiny.core io.vertx.mutiny.core.http -
-
Uses of HttpServer in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return HttpServer Modifier and Type Method Description HttpServer
Vertx. createHttpServer()
HttpServer
Vertx. createHttpServer(io.vertx.core.http.HttpServerOptions options)
-
Uses of HttpServer in io.vertx.mutiny.core.http
Fields in io.vertx.mutiny.core.http with type parameters of type HttpServer Modifier and Type Field Description static TypeArg<HttpServer>
HttpServer. __TYPE_ARG
Methods in io.vertx.mutiny.core.http that return HttpServer Modifier and Type Method Description HttpServer
HttpServer. connectionHandler(Consumer<HttpConnection> handler)
HttpServer
HttpServer. exceptionHandler(Consumer<Throwable> handler)
HttpServer
HttpServer. listenAndAwait()
Blocking variant oflisten(int, java.lang.String)
.HttpServer
HttpServer. listenAndAwait(int port)
Blocking variant oflisten(int)
.HttpServer
HttpServer. listenAndAwait(int port, String host)
Blocking variant oflisten(int,String)
.HttpServer
HttpServer. listenAndAwait(SocketAddress address)
Blocking variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
.HttpServer
HttpServer. listenAndForget()
Variant oflisten(int, java.lang.String)
that ignores the result of the operation.HttpServer
HttpServer. listenAndForget(int port)
Variant oflisten(int)
that ignores the result of the operation.HttpServer
HttpServer. listenAndForget(int port, String host)
Variant oflisten(int,String)
that ignores the result of the operation.HttpServer
HttpServer. listenAndForget(SocketAddress address)
Variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation.static HttpServer
HttpServer. newInstance(io.vertx.core.http.HttpServer arg)
HttpServer
HttpServer. requestHandler(Consumer<HttpServerRequest> handler)
HttpServer
HttpServer. webSocketHandler(Consumer<ServerWebSocket> handler)
Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpServer Modifier and Type Method Description io.smallrye.mutiny.Uni<HttpServer>
HttpServer. listen()
Likelisten(int, java.lang.String)
but supplying a handler that will be called when the server is actually listening (or has failed).io.smallrye.mutiny.Uni<HttpServer>
HttpServer. listen(int port)
Likelisten(int, java.lang.String)
but supplying a handler that will be called when the server is actually listening (or has failed).io.smallrye.mutiny.Uni<HttpServer>
HttpServer. listen(int port, String host)
Likelisten(int, java.lang.String)
but supplying a handler that will be called when the server is actually listening (or has failed).io.smallrye.mutiny.Uni<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).
-