Functions

void emberAfPluginTransportMqttStateChangedCallback (EmberAfPluginTransportMqttState state)
 MQTT client state is changed.
 
bool emberAfPluginTransportMqttMessageArrivedCallback (const char *topic, const char *payload)
 MQTT message arrived.

Detailed Description

These callbacks are contributed by the Gateway MQTT Transport plugin.

Function Documentation

◆ emberAfPluginTransportMqttMessageArrivedCallback()

bool emberAfPluginTransportMqttMessageArrivedCallback ( const char *  topic,
const char *  payload 
)

MQTT message arrived.

This function is called when the MQTT client for the gateway receives an incoming message on a topic. If the message is processed by the application, return true. If the message is not processed, return false. This function is called on a separate thread, so no stack calls should be made within the implementation of this function. Instead, use a global variable in that function to communicate the message arrival to a stack event or timer running from the main loop.

Parameters
topicA string containing the topic for the message that arrived. While the underlying MQTT libraries allow NULL characters in a topic, NULL characters are not supported in this implementation so the topic parameter can be assumed to be NULL terminated.
payloadA string containing the payload for the message that arrived.

◆ emberAfPluginTransportMqttStateChangedCallback()

void emberAfPluginTransportMqttStateChangedCallback ( EmberAfPluginTransportMqttState  state)

MQTT client state is changed.

This function is called when the state of the MQTT client changes.

Parameters
stateContains the new and current EmberAfPluginTransportMqttState state.