MQTTAsync_successData5
#include <MQTTAsync.h>
char
struct_id [4]
int struct_version
MQTTAsync_token token
enum MQTTReasonCodes reasonCode
MQTTProperties properties
union {
struct {
int reasonCodeCount
enum MQTTReasonCodes * reasonCodes
} sub
struct {
MQTTAsync_message message
char * destinationName
} pub
struct {
char * serverURI
int MQTTVersion
int sessionPresent
} connect
struct {
int reasonCodeCount
enum MQTTReasonCodes * reasonCodes
} unsub
} alt
The data returned on completion of a successful API call in the response callback onSuccess.
The eyecatcher for this structure. Will be MQSD.
The version number of this structure. Will be 0
A token identifying the successful request. Can be used to refer to the request later.
MQTT V5 reason code returned
MQTT V5 properties returned, if any
the number of reason codes in the reasonCodes array
an array of reasonCodes
For subscribeMany, the list of reasonCodes returned by the server.
the message being sent to the server
the topic destination for the message
For publish, the message being sent to the server.
the connection string of the server
the version of MQTT being used
the session present flag returned from the server
For unsubscribeMany, the list of reasonCodes returned by the server.
A union of the different values that can be returned for subscribe, unsubscribe and publish.
Generated automatically by Doxygen for Paho Asynchronous MQTT C Client Library from the source code.