Uses of Class
io.vertx.mutiny.core.net.NetSocket
-
Packages that use NetSocket Package Description io.vertx.mutiny.core.http io.vertx.mutiny.core.net io.vertx.mutiny.ext.eventbus.bridge.tcp -
-
Uses of NetSocket in io.vertx.mutiny.core.http
Methods in io.vertx.mutiny.core.http that return NetSocket Modifier and Type Method Description NetSocket
HttpClientResponse. netSocket()
NetSocket
HttpServerRequest. toNetSocketAndAwait()
Blocking variant ofHttpServerRequest.toNetSocket()
.Methods in io.vertx.mutiny.core.http that return types with arguments of type NetSocket Modifier and Type Method Description io.smallrye.mutiny.Uni<NetSocket>
HttpServerRequest. toNetSocket()
Establish a TCP tunnel with the client. -
Uses of NetSocket in io.vertx.mutiny.core.net
Fields in io.vertx.mutiny.core.net with type parameters of type NetSocket Modifier and Type Field Description static TypeArg<NetSocket>
NetSocket. __TYPE_ARG
Methods in io.vertx.mutiny.core.net that return NetSocket Modifier and Type Method Description NetSocket
NetSocket. closeHandler(Runnable handler)
NetSocket
NetClient. connectAndAwait(int port, String host)
Blocking variant ofNetClient.connect(int,String)
.NetSocket
NetClient. connectAndAwait(int port, String host, String serverName)
Blocking variant ofNetClient.connect(int,String,String)
.NetSocket
NetClient. connectAndAwait(SocketAddress remoteAddress)
Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress)
.NetSocket
NetClient. connectAndAwait(SocketAddress remoteAddress, String serverName)
Blocking variant ofNetClient.connect(io.vertx.mutiny.core.net.SocketAddress,String)
.NetSocket
NetSocket. drainHandler(Runnable handler)
NetSocket
NetSocket. endHandler(Runnable endHandler)
NetSocket
NetSocket. exceptionHandler(Consumer<Throwable> handler)
NetSocket
NetSocket. fetch(long amount)
NetSocket
NetSocket. handler(Consumer<Buffer> handler)
static NetSocket
NetSocket. newInstance(io.vertx.core.net.NetSocket arg)
NetSocket
NetSocket. pause()
NetSocket
NetSocket. resume()
NetSocket
NetSocket. sendFileAndForget(String filename)
Variant ofsendFile(String)
that ignores the result of the operation.NetSocket
NetSocket. sendFileAndForget(String filename, long offset)
Variant ofsendFile(String,long)
that ignores the result of the operation.NetSocket
NetSocket. sendFileAndForget(String filename, long offset, long length)
Variant ofsendFile(String,long,long)
that ignores the result of the operation.NetSocket
NetSocket. setWriteQueueMaxSize(int maxSize)
NetSocket
NetSocket. upgradeToSslAndForget()
Variant ofupgradeToSsl()
that ignores the result of the operation.NetSocket
NetSocket. upgradeToSslAndForget(String serverName)
Variant ofupgradeToSsl(String)
that ignores the result of the operation.Methods in io.vertx.mutiny.core.net that return types with arguments of type NetSocket Modifier and Type Method Description io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(int port, String host)
Open a connection to a server at the specificport
andhost
.io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(int port, String host, String serverName)
Open a connection to a server at the specificport
andhost
.io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(SocketAddress remoteAddress)
Open a connection to a server at the specificremoteAddress
.io.smallrye.mutiny.Uni<NetSocket>
NetClient. connect(SocketAddress remoteAddress, String serverName)
Open a connection to a server at the specificremoteAddress
.ReadStream<NetSocket>
NetServer. connectStream()
Method parameters in io.vertx.mutiny.core.net with type arguments of type NetSocket Modifier and Type Method Description NetServer
NetServer. connectHandler(Consumer<NetSocket> handler)
-
Uses of NetSocket in io.vertx.mutiny.ext.eventbus.bridge.tcp
Methods in io.vertx.mutiny.ext.eventbus.bridge.tcp that return NetSocket Modifier and Type Method Description NetSocket
BridgeEvent. socket()
-