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 NetServerVertx. createNetServer()Create a TCP/SSL server using default optionsNetServerVertx. 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 TypeArg<NetServer>NetServer. __TYPE_ARGMethods in io.vertx.reactivex.core.net that return NetServer Modifier and Type Method Description NetServerNetServer. connectHandler(Handler<NetSocket> handler)Supply a connect handler for this server.NetServerNetServer. listen()Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(int port)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(int port, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(int port, String host)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(int port, String host, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(SocketAddress localAddress)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(SocketAddress localAddress, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.static NetServerNetServer. newInstance(NetServer arg)Methods in io.vertx.reactivex.core.net that return types with arguments of type NetServer Modifier and Type Method Description io.reactivex.Single<NetServer>NetServer. rxListen()Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.io.reactivex.Single<NetServer>NetServer. rxListen(int port)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.io.reactivex.Single<NetServer>NetServer. rxListen(int port, String host)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.io.reactivex.Single<NetServer>NetServer. rxListen(SocketAddress localAddress)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.Method parameters in io.vertx.reactivex.core.net with type arguments of type NetServer Modifier and Type Method Description NetServerNetServer. listen(int port, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(int port, String host, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails.NetServerNetServer. listen(SocketAddress localAddress, Handler<AsyncResult<NetServer>> listenHandler)Likelisten(io.vertx.core.Handler<io.vertx.core.AsyncResult<io.vertx.reactivex.core.net.NetServer>>)but providing a handler that will be notified when the server is listening, or fails. -
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 StompServerStompServer. create(Vertx vertx, NetServer netServer)Creates aStompServerbased on the default Stomp Server implementation.static StompServerStompServer. create(Vertx vertx, NetServer net, StompServerOptions options)Creates aStompServerbased on the default Stomp Server implementation.
-