Raspberry Pi - MQTT for IoT
Consider this Python code snippet using Paho MQTT client:
client.publish('sensor/data', 'temp=22', qos=0)
client.publish('sensor/data', 'temp=23', qos=1)
client.publish('sensor/data', 'temp=24', qos=2)
What is the expected behavior regarding message delivery?