Uses of Class
io.vertx.mutiny.core.net.NetServer
-
Packages that use NetServer Package Description io.vertx.mutiny.core io.vertx.mutiny.core.net io.vertx.mutiny.ext.stomp -
-
Uses of NetServer in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return NetServer Modifier and Type Method Description NetServer
Vertx. createNetServer()
NetServer
Vertx. createNetServer(io.vertx.core.net.NetServerOptions options)
-
Uses of NetServer in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type NetServer Modifier and Type Field Description static TypeArg<NetServer>
NetServer. __TYPE_ARG
Methods in io.vertx.mutiny.core.net that return NetServer Modifier and Type Method Description NetServer
NetServer. connectHandler(Consumer<NetSocket> handler)
NetServer
NetServer. listenAndAwait()
Blocking variant oflisten()
.NetServer
NetServer. listenAndAwait(int port)
Blocking variant oflisten(int)
.NetServer
NetServer. listenAndAwait(int port, String host)
Blocking variant oflisten(int,String)
.NetServer
NetServer. listenAndAwait(SocketAddress localAddress)
Blocking variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
.NetServer
NetServer. listenAndForget()
Variant oflisten()
that ignores the result of the operation.NetServer
NetServer. listenAndForget(int port)
Variant oflisten(int)
that ignores the result of the operation.NetServer
NetServer. listenAndForget(int port, String host)
Variant oflisten(int,String)
that ignores the result of the operation.NetServer
NetServer. listenAndForget(SocketAddress localAddress)
Variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
that ignores the result of the operation.static NetServer
NetServer. newInstance(io.vertx.core.net.NetServer arg)
Methods in io.vertx.mutiny.core.net that return types with arguments of type NetServer Modifier and Type Method Description io.smallrye.mutiny.Uni<NetServer>
NetServer. listen()
Likelisten()
but providing a handler that will be notified when the server is listening, or fails.io.smallrye.mutiny.Uni<NetServer>
NetServer. listen(int port)
Likelisten()
but providing a handler that will be notified when the server is listening, or fails.io.smallrye.mutiny.Uni<NetServer>
NetServer. listen(int port, String host)
Likelisten()
but providing a handler that will be notified when the server is listening, or fails.io.smallrye.mutiny.Uni<NetServer>
NetServer. listen(SocketAddress localAddress)
Likelisten()
but providing a handler that will be notified when the server is listening, or fails. -
Uses of NetServer in io.vertx.mutiny.ext.stomp
Methods in io.vertx.mutiny.ext.stomp with parameters of type NetServer Modifier and Type Method Description static StompServer
StompServer. create(Vertx vertx, NetServer netServer)
static StompServer
StompServer. create(Vertx vertx, NetServer net, io.vertx.ext.stomp.StompServerOptions options)
-