Uses of Class
io.vertx.mutiny.core.http.HttpServer
Packages that use HttpServer
-
Uses of HttpServer in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return HttpServerModifier and TypeMethodDescriptionVertx.createHttpServer()
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 HttpServerMethods in io.vertx.mutiny.core.http that return HttpServerModifier and TypeMethodDescriptionHttpServer.connectionHandler
(Consumer<HttpConnection> handler) HttpServer.exceptionHandler
(Consumer<Throwable> handler) HttpServer.invalidRequestHandler
(Consumer<HttpServerRequest> handler) HttpServer.listenAndAwait()
Blocking variant oflisten(int, java.lang.String)
.HttpServer.listenAndAwait
(int port) Blocking variant oflisten(int)
.HttpServer.listenAndAwait
(int port, String host) Blocking variant oflisten(int,String)
.HttpServer.listenAndAwait
(SocketAddress address) Blocking variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
.HttpServer.listenAndForget()
Variant oflisten(int, java.lang.String)
that ignores the result of the operation.HttpServer.listenAndForget
(int port) Variant oflisten(int)
that ignores the result of the operation.HttpServer.listenAndForget
(int port, String host) Variant oflisten(int,String)
that ignores the result of the operation.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.requestHandler
(Consumer<HttpServerRequest> handler) HttpServer.webSocketHandler
(Consumer<ServerWebSocket> handler) HttpServer.webSocketHandshakeHandler
(Consumer<ServerWebSocketHandshake> handler) Methods in io.vertx.mutiny.core.http that return types with arguments of type HttpServerModifier and TypeMethodDescriptionio.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>
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).