MQTT ==== This section describes the mapping between the high-level actions that can be executed on a Thing and the messages exchanged with the MQTT broker when using the MQTT Protocol Binding. .. note:: Unlike the other bindings, the MQTT binding is not self-contained and requires the presence of an external MQTT broker. All messages are serialized in JSON format. Form elements ------------- Form elements produced by the MQTT binding vary depending on the type of interaction. All forms contain the following fields: ============= =========== Field Description ============= =========== ``op`` Interaction verb (e.g. ``readproperty``) associated with this form element. ``href`` Contains the MQTT broker URL joined with the servient ID and the name of an MQTT topic. ``mediaType`` This field will always contain the MIME media type for JSON. ============= =========== An example of an MQTT form ``href``:: mqtt://my.mqtt.broker:1883/my-servient/property/requests/benchmark-thing/currenttime * ``my.mqtt.broker:1883`` is the broker URL. * ``my-servient`` is the servient ID used as a namespace to avoid collisions between servients using the same broker. * ``property/requests/benchmark-thing/currenttime`` is the topic where messages are exchanged for this specific interaction and verb. Topics ------ There are six different types of topics used by clients and servers of the MQTT binding to exchange messages: ================== =========== Topic Pattern ================== =========== Property request ``/property/requests//`` Property update ``/property/updates//`` Property write ACK ``/property/ack//`` Action invocation ``/action/invocation//`` Action result ``/action/result//`` Event emission ``/event//`` ================== =========== The format of the messages published in these topics and the way the binding interfaces with them is described in the next section. Interaction Model mapping ------------------------- .. note:: There is no need to manually manage subscriptions as the MQTT server maintains an internal subscription to all properties and events throughout its lifetime. Read Property ^^^^^^^^^^^^^ The client may publish a message in the **property request** topic to force the server to publish the current value of the property:: { "action": "read" } The property value will be published in the **property update** topic:: { "value": , "timestamp": } Observe Property changes ^^^^^^^^^^^^^^^^^^^^^^^^ All property changes are automatically published in the **property update** topic without further intervention from the client:: { "value": , "timestamp": } Write Property ^^^^^^^^^^^^^^ To update the value of a property, the client will publish a message in the **property request** topic with the following format:: { "action": "write", "value": , "ack": } The server will acknowledge the write by publishing a message in the **property write ACK** topic:: { "ack": } Invoke Action ^^^^^^^^^^^^^ An invocation may be started by publishing a message in the **action invocation** topic:: { "id": , "input": } The invocation result will be published in the **action result** topic:: { "id": , "timestamp": , "result" , "error": } Observe Event ^^^^^^^^^^^^^ All event emissions are automatically published in the **event emission** topic without further intervention from the client:: { "name": , "data": , "timestamp": }