implicit final class VertxNetServerOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxNetServerOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new VertxNetServerOps(target: NetServer)
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
closeL(): Task[Unit]
Like
#close
but supplying a handler that will be notified when close is complete. -
def
getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
listenL(localAddress: SocketAddress): Task[NetServer]
Like
#listen(SocketAddress)
but providing a handler that will be notified when the server is listening, or fails.Like
#listen(SocketAddress)
but providing a handler that will be notified when the server is listening, or fails.- localAddress
the local address to listen on
- returns
a reference to this, so the API can be used fluently
-
def
listenL(port: Int): Task[NetServer]
Like
#listen(int)
but providing a handler that will be notified when the server is listening, or fails.Like
#listen(int)
but providing a handler that will be notified when the server is listening, or fails.- port
the port to listen on
- returns
a reference to this, so the API can be used fluently
-
def
listenL(port: Int, host: String): Task[NetServer]
Like
String)
but providing a handler that will be notified when the server is listening, or fails.Like
String)
but providing a handler that will be notified when the server is listening, or fails.- port
the port to listen on
- host
the host to listen on
- returns
a reference to this, so the API can be used fluently
-
def
listenL(): Task[NetServer]
Like
#listen
but providing a handler that will be notified when the server is listening, or fails.Like
#listen
but providing a handler that will be notified when the server is listening, or fails.- returns
a reference to this, so the API can be used fluently
- val target: NetServer
-
def
toString(): String
- Definition Classes
- Any