implicit final class VertxNetClientOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxNetClientOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new VertxNetClientOps(target: NetClient)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- Any
- final def ##(): Int
- Definition Classes
- Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def connectL(remoteAddress: SocketAddress, serverName: String): Task[NetSocket]
Open a connection to a server at the specific
remoteAddress.Open a connection to a server at the specific
remoteAddress.The connect is done asynchronously and on success, a
NetSocketinstance is supplied via theconnectHandlerinstance- remoteAddress
the remote address
- serverName
the SNI server name
- returns
a reference to this, so the API can be used fluently
- def connectL(remoteAddress: SocketAddress): Task[NetSocket]
Open a connection to a server at the specific
remoteAddress.Open a connection to a server at the specific
remoteAddress.The connect is done asynchronously and on success, a
NetSocketinstance is supplied via theconnectHandlerinstance- remoteAddress
the remote address
- returns
a reference to this, so the API can be used fluently
- def connectL(port: Int, host: String, serverName: String): Task[NetSocket]
Open a connection to a server at the specific
portandhost.Open a connection to a server at the specific
portandhost.hostcan be a valid host name or IP address. The connect is done asynchronously and on success, aNetSocketinstance is supplied via theconnectHandlerinstance- port
the port
- host
the host
- serverName
the SNI server name
- returns
a reference to this, so the API can be used fluently
- def connectL(port: Int, host: String): Task[NetSocket]
Open a connection to a server at the specific
portandhost.Open a connection to a server at the specific
portandhost.hostcan be a valid host name or IP address. The connect is done asynchronously and on success, aNetSocketinstance is supplied via theconnectHandlerinstance- port
the port
- host
the host
- returns
a reference to this, so the API can be used fluently
- def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val target: NetClient
- def toString(): String
- Definition Classes
- Any