Uses of Class
io.vertx.reactivex.core.net.NetSocket
-
Packages that use NetSocket Package Description io.vertx.reactivex.core.http io.vertx.reactivex.core.net io.vertx.reactivex.ext.eventbus.bridge.tcp -
-
Uses of NetSocket in io.vertx.reactivex.core.http
Methods in io.vertx.reactivex.core.http that return NetSocket Modifier and Type Method Description NetSocketHttpClientResponse. netSocket()Methods in io.vertx.reactivex.core.http that return types with arguments of type NetSocket Modifier and Type Method Description io.reactivex.Single<NetSocket>HttpServerRequest. rxToNetSocket()Establish a TCP tunnel with the client.Method parameters in io.vertx.reactivex.core.http with type arguments of type NetSocket Modifier and Type Method Description voidHttpServerRequest. toNetSocket(Handler<AsyncResult<NetSocket>> handler)Establish a TCP tunnel with the client. -
Uses of NetSocket in io.vertx.reactivex.core.net
Fields in io.vertx.reactivex.core.net with type parameters of type NetSocket Modifier and Type Field Description static TypeArg<NetSocket>NetSocket. __TYPE_ARGMethods in io.vertx.reactivex.core.net that return NetSocket Modifier and Type Method Description NetSocketNetSocket. closeHandler(Handler<Void> handler)Set a handler that will be called when the NetSocket is closedNetSocketNetSocket. drainHandler(Handler<Void> handler)NetSocketNetSocket. endHandler(Handler<Void> endHandler)This handler might be called after the close handler when the socket is paused and there are still buffers to deliver.NetSocketNetSocket. exceptionHandler(Handler<Throwable> handler)NetSocketNetSocket. fetch(long amount)NetSocketNetSocket. handler(Handler<Buffer> handler)static NetSocketNetSocket. newInstance(NetSocket arg)NetSocketNetSocket. pause()NetSocketNetSocket. resume()NetSocketNetSocket. sendFile(String filename)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. sendFile(String filename, long offset)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. sendFile(String filename, long offset, long length)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. sendFile(String filename, long offset, long length, Handler<AsyncResult<Void>> resultHandler)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. sendFile(String filename, long offset, Handler<AsyncResult<Void>> resultHandler)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. sendFile(String filename, Handler<AsyncResult<Void>> resultHandler)Same assendFile(java.lang.String, io.vertx.core.Handler<io.vertx.core.AsyncResult<java.lang.Void>>)but also takes a handler that will be called when the send has completed or a failure has occurredNetSocketNetSocket. setWriteQueueMaxSize(int maxSize)NetSocketNetSocket. upgradeToSsl()Upgrade channel to use SSL/TLS.NetSocketNetSocket. upgradeToSsl(Handler<AsyncResult<Void>> handler)Upgrade channel to use SSL/TLS.NetSocketNetSocket. upgradeToSsl(String serverName)Upgrade channel to use SSL/TLS.NetSocketNetSocket. upgradeToSsl(String serverName, Handler<AsyncResult<Void>> handler)Upgrade channel to use SSL/TLS.Methods in io.vertx.reactivex.core.net that return types with arguments of type NetSocket Modifier and Type Method Description ReadStream<NetSocket>NetServer. connectStream()Deprecated.io.reactivex.Single<NetSocket>NetClient. rxConnect(int port, String host)Open a connection to a server at the specificportandhost.io.reactivex.Single<NetSocket>NetClient. rxConnect(int port, String host, String serverName)Open a connection to a server at the specificportandhost.io.reactivex.Single<NetSocket>NetClient. rxConnect(SocketAddress remoteAddress)Open a connection to a server at the specificremoteAddress.io.reactivex.Single<NetSocket>NetClient. rxConnect(SocketAddress remoteAddress, String serverName)Open a connection to a server at the specificremoteAddress.Method parameters in io.vertx.reactivex.core.net with type arguments of type NetSocket Modifier and Type Method Description NetClientNetClient. connect(int port, String host, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(int port, String host, String serverName, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificportandhost.NetClientNetClient. connect(SocketAddress remoteAddress, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificremoteAddress.NetClientNetClient. connect(SocketAddress remoteAddress, String serverName, Handler<AsyncResult<NetSocket>> connectHandler)Open a connection to a server at the specificremoteAddress.NetServerNetServer. connectHandler(Handler<NetSocket> handler)Supply a connect handler for this server. -
Uses of NetSocket in io.vertx.reactivex.ext.eventbus.bridge.tcp
Methods in io.vertx.reactivex.ext.eventbus.bridge.tcp that return NetSocket Modifier and Type Method Description NetSocketBridgeEvent. socket()Get the SockJSSocket instance corresponding to the event
-