Uses of Class
io.vertx.mutiny.core.net.NetServer
Packages that use NetServer
-
Uses of NetServer in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return NetServerModifier and TypeMethodDescriptionVertx.createNetServer()
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 NetServerMethods in io.vertx.mutiny.core.net that return NetServerModifier and TypeMethodDescriptionNetServer.connectHandler
(Consumer<NetSocket> handler) NetServer.listenAndAwait()
Blocking variant oflisten()
.NetServer.listenAndAwait
(int port) Blocking variant oflisten(int)
.NetServer.listenAndAwait
(int port, String host) Blocking variant oflisten(int,String)
.NetServer.listenAndAwait
(SocketAddress localAddress) Blocking variant oflisten(io.vertx.mutiny.core.net.SocketAddress)
.NetServer.listenAndForget()
Variant oflisten()
that ignores the result of the operation.NetServer.listenAndForget
(int port) Variant oflisten(int)
that ignores the result of the operation.NetServer.listenAndForget
(int port, String host) Variant oflisten(int,String)
that ignores the result of the operation.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 NetServerModifier and TypeMethodDescriptionio.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>
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