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()Create a TCP/SSL server using default optionsVertx.createNetServer(io.vertx.core.net.NetServerOptions options) Create a TCP/SSL server using the specified optionsVertx.createNetServer(io.vertx.core.net.TcpServerConfig config) Create a TCP/SSL server using the specified configVertx.createNetServer(io.vertx.core.net.TcpServerConfig config, io.vertx.core.net.ServerSSLOptions sslOptions) Create a TCP/SSL server using the specified config and the specified ssl 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.closeAndForget()Close the server.NetServer.connectHandler(Consumer<NetSocket> handler) Supply a connect handler for this server.NetServer.listenAndAwait()Start listening on the port and host as configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndAwait(int port) Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndAwait(int port, String host) Start listening on the specified port and host, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndAwait(io.vertx.core.net.SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndForget()Start listening on the port and host as configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndForget(int port) Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndForget(int port, String host) Start listening on the specified port and host, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.NetServer.listenAndForget(io.vertx.core.net.SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.static NetServerNetServer.newInstance(io.vertx.core.net.NetServer delegate) Creates a new instance of theNetServer.NetServer.shutdownAndForget()Shutdown with a 30 seconds timeout (shutdown(30, TimeUnit.SECONDS)).NetServer.shutdownAndForget(long timeout, TimeUnit unit) Callsshutdown(Duration).NetServer.shutdownAndForget(Duration timeout) Initiate the server shutdown sequence.NetServer.updateSSLOptionsAndForget(io.vertx.core.net.ServerSSLOptions options) Update the server with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetServer.updateSSLOptionsAndForget(io.vertx.core.net.ServerSSLOptions options, boolean force) Update the server with new SSLoptions, the update happens if the options object is valid and different from the existing options object.NetServer.updateTrafficShapingOptionsAndForget(io.vertx.core.net.TrafficShapingOptions options) Update the server with new trafficoptions, the update happens if the options object is valid and different from the existing options object.Methods in io.vertx.mutiny.core.net that return types with arguments of type NetServerModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<NetServer>NetServer.listen()Start listening on the port and host as configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.io.smallrye.mutiny.Uni<NetServer>NetServer.listen(int port) Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.io.smallrye.mutiny.Uni<NetServer>Start listening on the specified port and host, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.io.smallrye.mutiny.Uni<NetServer>NetServer.listen(io.vertx.core.net.SocketAddress localAddress) Start listening on the specified local address, ignoring port and host configured in theio.vertx.mutiny.core.net.NetServerOptionsused when creating the server.