Best practices in handling MQTT messages with Paho Java library
Hello, I'm developing a REST API interface that, in some parts, has to interact with MQTT through Paho client library. By design, Paho client can only one callback for every message received: mqttClient = new MqttClient(MQTT_ADDRESS, MQTT_CLIENT_ID);...
Apr 7, 2016MJ