implicit final class VertxHttpServerOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxHttpServerOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new VertxHttpServerOps(target: HttpServer)
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
#closebut supplying a handler that will be called when the server is actually closed (or has failed). - def getClass(): Class[_ <: AnyVal]
- Definition Classes
- AnyVal → Any
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def listenL(): Task[HttpServer]
Like
#listenbut supplying a handler that will be called when the server is actually listening (or has failed). - def listenL(port: Int): Task[HttpServer]
Like
#listen(int)but supplying a handler that will be called when the server is actually listening (or has failed).Like
#listen(int)but supplying a handler that will be called when the server is actually listening (or has failed).- port
the port to listen on
- def listenL(address: SocketAddress): Task[HttpServer]
Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed).
Tell the server to start listening on the given address supplying a handler that will be called when the server is actually listening (or has failed).
- address
the address to listen on
- def listenL(port: Int, host: String): Task[HttpServer]
Like
String)but supplying a handler that will be called when the server is actually listening (or has failed).Like
String)but supplying a handler that will be called when the server is actually listening (or has failed).- port
the port to listen on
- host
the host to listen on
- val target: HttpServer
- def toString(): String
- Definition Classes
- Any