What is difference between MQTTAsync_onSuccess and MQTTAsync_deliveryComplete callbacks?
问题 I'm learning about MQTT (specifically the paho C library) by reading and experimenting with variations on the async pub/sub examples. What's the difference between the MQTTAsync_deliveryComplete callback that you set with MQTTAsync_setCallbacks() vs. the MQTTAsync_onSuccess or MQTTAsync_onSuccess5 callbacks that you set in the MQTTAsync_responseOptions struct that you pass to MQTTAsync_sendMessage() ? All seem to deal with "successful delivery" of published messages, but from reading the