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 HttpServerVertx. createHttpServer()HttpServerVertx. 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_ARGMethods in io.vertx.mutiny.core.http that return HttpServer Modifier and Type Method Description HttpServerHttpServer. connectionHandler(Consumer<HttpConnection> handler)HttpServerHttpServer. exceptionHandler(Consumer<Throwable> handler)HttpServerHttpServer. listenAndAwait()Blocking variant oflisten(int, java.lang.String).HttpServerHttpServer. listenAndAwait(int port)Blocking variant oflisten(int).HttpServerHttpServer. listenAndAwait(int port, String host)Blocking variant oflisten(int,String).HttpServerHttpServer. listenAndAwait(SocketAddress address)Blocking variant oflisten(io.vertx.mutiny.core.net.SocketAddress).HttpServerHttpServer. listenAndForget()Variant oflisten(int, java.lang.String)that ignores the result of the operation.HttpServerHttpServer. listenAndForget(int port)Variant oflisten(int)that ignores the result of the operation.HttpServerHttpServer. listenAndForget(int port, String host)Variant oflisten(int,String)that ignores the result of the operation.HttpServerHttpServer. listenAndForget(SocketAddress address)Variant oflisten(io.vertx.mutiny.core.net.SocketAddress)that ignores the result of the operation.static HttpServerHttpServer. newInstance(io.vertx.core.http.HttpServer arg)HttpServerHttpServer. requestHandler(Consumer<HttpServerRequest> handler)HttpServerHttpServer. 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).
-