MqttClient

external class MqttClient

Represents a MQTT client.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun end(force: Boolean? = definedExternally, options: dynamic = definedExternally, callback: () -> Unit? = definedExternally)

Closes the client with the given options and executing the callback function after ending. can be forced by setting the force flag to true.

Link copied to clipboard
fun on(event: String, callback: (dynamic) -> Unit)
fun on(event: String, callback: (String, dynamic, dynamic) -> Unit)

Sets up to execute the callback function after the trigger of the given event.

Link copied to clipboard
fun publish(topic: String, message: dynamic, options: dynamic = definedExternally, callback: (dynamic) -> Unit? = definedExternally)

Publishes the message on the given topic with the given options and executing the callback function after ending.

Link copied to clipboard
fun subscribe(topic: String, options: dynamic = definedExternally, callback: (dynamic, dynamic) -> Unit? = definedExternally)

Subscribes to the given topic with the given options and executing the callback function after ending.