open class NetClient : Measured
A TCP client. Multiple connections to different servers can be made using the same instance. This client supports a configurable number of connection attempts and a configurable delay between attempts. NOTE: This class has been automatically generated from the io.vertx.core.net.NetClient non RX-ified interface using Vert.x codegen. |
|
open class NetServer : Measured
Represents a TCP server NOTE: This class has been automatically generated from the io.vertx.core.net.NetServer non RX-ified interface using Vert.x codegen. |
|
open class NetSocket : ReadStream<Buffer>, WriteStream<Buffer>
Represents a socket-like interface to a TCP connection on either the client or the server side. Instances of this class are created on the client side by an io.vertx.reactivex.core.net.NetClient when a connection to a server is made, or on the server side by a io.vertx.reactivex.core.net.NetServer when a server accepts a connection. It implements both and so it can be used with io.vertx.reactivex.core.streams.Pump to pump data with flow control. NOTE: This class has been automatically generated from the io.vertx.core.net.NetSocket non RX-ified interface using Vert.x codegen. |
|
open class SelfSignedCertificate
A self-signed certificate helper for testing and development purposes. While it helps for testing and development, it should never ever be used in production settings. NOTE: This class has been automatically generated from the io.vertx.core.net.SelfSignedCertificate non RX-ified interface using Vert.x codegen. |
|
open class SocketAddress
The address of a socket, an inet socket address or a domain socket address. Use |