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 NetServer
    Modifier and Type
    Method
    Description
    Create a TCP/SSL server using default options
    Vertx.createNetServer(io.vertx.core.net.NetServerOptions options)
    Create a TCP/SSL server using the specified options
    Vertx.createNetServer(io.vertx.core.net.TcpServerConfig config)
    Create a TCP/SSL server using the specified config
    Vertx.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 NetServer
    Modifier and Type
    Field
    Description
    static final TypeArg<NetServer>
    NetServer.__TYPE_ARG
     
    Methods in io.vertx.mutiny.core.net that return NetServer
    Modifier and Type
    Method
    Description
    NetServer.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 the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    NetServer.listenAndAwait(int port, String host)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    NetServer.listenAndForget()
    Start listening on the port and host as configured in the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    NetServer.listenAndForget(int port, String host)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    static NetServer
    NetServer.newInstance(io.vertx.core.net.NetServer delegate)
    Creates a new instance of the NetServer.
    NetServer.shutdownAndForget()
    Shutdown with a 30 seconds timeout (shutdown(30, TimeUnit.SECONDS)).
    NetServer.shutdownAndForget(long timeout, TimeUnit unit)
    NetServer.shutdownAndForget(Duration timeout)
    Initiate the server shutdown sequence.
    NetServer.updateSSLOptionsAndForget(io.vertx.core.net.ServerSSLOptions options)
    Update the server with new SSL options, 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 SSL options, 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 traffic options, 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 NetServer
    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Uni<NetServer>
    NetServer.listen()
    Start listening on the port and host as configured in the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.
    io.smallrye.mutiny.Uni<NetServer>
    NetServer.listen(int port, String host)
    Start listening on the specified port and host, ignoring port and host configured in the io.vertx.mutiny.core.net.NetServerOptions used 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 the io.vertx.mutiny.core.net.NetServerOptions used when creating the server.