Uses of Class
io.vertx.reactivex.core.net.NetServer
-
Packages that use NetServer Package Description io.vertx.reactivex.core io.vertx.reactivex.core.net io.vertx.reactivex.ext.stomp -
-
Uses of NetServer in io.vertx.reactivex.core
Methods in io.vertx.reactivex.core that return NetServer Modifier and Type Method Description NetServer
Vertx. createNetServer()
Create a TCP/SSL server using default optionsNetServer
Vertx. createNetServer(NetServerOptions options)
Create a TCP/SSL server using the specified options -
Uses of NetServer in io.vertx.reactivex.core.net
Fields in io.vertx.reactivex.core.net with type parameters of type NetServer Modifier and Type Field Description static io.vertx.lang.rx.TypeArg<NetServer>
NetServer. __TYPE_ARG
Methods in io.vertx.reactivex.core.net that return NetServer Modifier and Type Method Description NetServer
NetServer. connectHandler(Handler<NetSocket> handler)
Supply a connect handler for this server.static NetServer
NetServer. newInstance(NetServer arg)
Methods in io.vertx.reactivex.core.net that return types with arguments of type NetServer Modifier and Type Method Description Future<NetServer>
NetServer. listen()
Start listening on the port and host as configured in theNetServerOptions
used when creating the server.Future<NetServer>
NetServer. listen(int port)
Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theNetServerOptions
used when creating the server.Future<NetServer>
NetServer. listen(int port, String host)
Start listening on the specified port and host, ignoring port and host configured in theNetServerOptions
used when creating the server.Future<NetServer>
NetServer. listen(SocketAddress localAddress)
Start listening on the specified local address, ignoring port and host configured in theNetServerOptions
used when creating the server.Single<NetServer>
NetServer. rxListen()
Start listening on the port and host as configured in theNetServerOptions
used when creating the server.Single<NetServer>
NetServer. rxListen(int port)
Start listening on the specified port and host "0.0.0.0", ignoring port and host configured in theNetServerOptions
used when creating the server.Single<NetServer>
NetServer. rxListen(int port, String host)
Start listening on the specified port and host, ignoring port and host configured in theNetServerOptions
used when creating the server.Single<NetServer>
NetServer. rxListen(SocketAddress localAddress)
Start listening on the specified local address, ignoring port and host configured in theNetServerOptions
used when creating the server. -
Uses of NetServer in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp with parameters of type NetServer Modifier and Type Method Description static StompServer
StompServer. create(Vertx vertx, NetServer netServer)
Creates aStompServer
based on the default Stomp Server implementation.static StompServer
StompServer. create(Vertx vertx, NetServer net, StompServerOptions options)
Creates aStompServer
based on the default Stomp Server implementation.
-