implicit final class VertxMqttServerOps extends AnyVal
- Alphabetic
- By Inheritance
- VertxMqttServerOps
- AnyVal
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new VertxMqttServerOps(target: MqttServer)
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]
Close the server supplying an 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[MqttServer]
Start the server listening for incoming connections using the specified options through the constructor
Start the server listening for incoming connections using the specified options through the constructor
- returns
a reference to this, so the API can be used fluently
- def listenL(port: Int): Task[MqttServer]
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host.
Start the server listening for incoming connections on the port specified but on "0.0.0.0" as host. It ignores any options specified through the constructor
- 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[MqttServer]
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
Start the server listening for incoming connections on the port and host specified It ignores any options specified through the constructor
- port
the port to listen on
- host
the host to listen on
- returns
a reference to this, so the API can be used fluently
- val target: MqttServer
- def toString(): String
- Definition Classes
- Any