implicit final class VertxNetClientOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxNetClientOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
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
NetSocket
instance is supplied via theconnectHandler
instance- 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
NetSocket
instance is supplied via theconnectHandler
instance- 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
port
andhost
.Open a connection to a server at the specific
port
andhost
.host
can be a valid host name or IP address. The connect is done asynchronously and on success, aNetSocket
instance is supplied via theconnectHandler
instance- 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
port
andhost
.Open a connection to a server at the specific
port
andhost
.host
can be a valid host name or IP address. The connect is done asynchronously and on success, aNetSocket
instance is supplied via theconnectHandler
instance- 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