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 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).
-