Uses of Class
io.vertx.rxjava.core.net.NetServer
-
Packages that use NetServer Package Description io.vertx.rxjava.core io.vertx.rxjava.core.net io.vertx.rxjava.ext.stomp -
-
Uses of NetServer in io.vertx.rxjava.core
Methods in io.vertx.rxjava.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.rxjava.core.net
Fields in io.vertx.rxjava.core.net with type parameters of type NetServer Modifier and Type Field Description static TypeArg<NetServer>
NetServer. __TYPE_ARG
Methods in io.vertx.rxjava.core.net that return NetServer Modifier and Type Method Description NetServer
NetServer. connectHandler(Handler<NetSocket> handler)
Supply a connect handler for this server.NetServer
NetServer. listen()
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(int port)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(int port, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(int port, String host)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(int port, String host, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(SocketAddress localAddress)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(SocketAddress localAddress, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.static NetServer
NetServer. newInstance(NetServer arg)
Methods in io.vertx.rxjava.core.net that return types with arguments of type NetServer Modifier and Type Method Description rx.Single<NetServer>
NetServer. rxListen()
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.rx.Single<NetServer>
NetServer. rxListen(int port)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.rx.Single<NetServer>
NetServer. rxListen(int port, String host)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.rx.Single<NetServer>
NetServer. rxListen(SocketAddress localAddress)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.Method parameters in io.vertx.rxjava.core.net with type arguments of type NetServer Modifier and Type Method Description NetServer
NetServer. listen(int port, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(int port, String host, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails.NetServer
NetServer. listen(SocketAddress localAddress, Handler<AsyncResult<NetServer>> listenHandler)
Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.rxjava.core.net.NetServer>>)
but providing a handler that will be notified when the server is listening, or fails. -
Uses of NetServer in io.vertx.rxjava.ext.stomp
Methods in io.vertx.rxjava.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.
-