Software:Eclipse Paho
From HandWiki
Developer(s) | eclipse |
---|---|
Initial release | 2014 |
Stable release | 1.4.1
/ February 25, 2019[1] |
Written in | Java, C, Go, C#, Python, JavaScript |
Operating system | Cross-platform |
Platform | Java Virtual Machine, .NET |
Type | MQTT implementation |
License | Eclipse Public License |
Website | www |
Eclipse Paho is a MQTT (Message Queuing Telemetry Transport) implementation.[2]
Paho is available on various platforms and programming languages:[3]
Example
A simple example of using Paho could be:[4]
client = new MqttClient("tcp://localhost:1883", "pahomqttExample"); client.connect(); MqttMessage message = new MqttMessage(); message.setPayload("Hello World".getBytes()); client.publish("pahoExample/theTopic", message); client.disconnect();
References
- ↑ "Eclipse Paho - projects.eclipse.org". 31 January 2013. https://projects.eclipse.org/projects/iot.paho.
- ↑ "An Easy Route to Interoperability – Interview with Andy Piper on Eclipse Paho". jaxenter.com. 2012-06-01. https://jaxenter.com/an-easy-route-to-interoperability-interview-with-andy-piper-on-eclipse-paho-104579.html.
- ↑ "MQTT Client Comparison". https://www.eclipse.org/paho/downloads.php.
- ↑ "Practical MQTT with Paho Comparison". infoq.com. 2013-11-08. https://www.infoq.com/articles/practical-mqtt-with-paho.
See also
Original source: https://en.wikipedia.org/wiki/Eclipse Paho.
Read more |