Commit 66e26bc1429dd49e5543489b2b2ed1b3096e2593

Authored by Peter M. Groen
1 parent 482663fa

Updated dependencies

Showing 1 changed file with 5 additions and 7 deletions
README.md
1 -MQTT-CPP  
2 -========  
3 - 1 +# MQTT-CPP
4 Modern, asynchronous and fast C++ client for paho-mqtt ( paho-c ). 2 Modern, asynchronous and fast C++ client for paho-mqtt ( paho-c ).
5 3
6 **Features:** 4 **Features:**
7 * Simple and clean A-synchronous API. ( Connect, publish, subscribe ). 5 * Simple and clean A-synchronous API. ( Connect, publish, subscribe ).
8 -* Thread-safe. Use multiple topics in multiple threads.. 6 +* Multi-threaded. Use multiple topics in multiple threads..
9 * Callbacks can be lambdas, class methods, bind expressions, or any [std::function] 7 * Callbacks can be lambdas, class methods, bind expressions, or any [std::function]
10 * Fully autonomous reconnecting 8 * Fully autonomous reconnecting
11 9
12 # Dependencies 10 # Dependencies
13 -The only dependency is to libpaho-mqtt3a.so. Changes are there is a version for your platform ( Debian, Fedora, CentOS ). 11 +This library has dependencies on libpaho-mqtt3a.so and Boost ( RegEx and Core ).
  12 +Changes are there is a version for your platform ( Debian, Fedora, CentOS ).
14 Just check your package manager for the correct package-name. 13 Just check your package manager for the correct package-name.
15 14
16 # Tutorial 15 # Tutorial
@@ -42,5 +41,4 @@ later the "pub" part. If all went well, you should see two screens in sync runni @@ -42,5 +41,4 @@ later the "pub" part. If all went well, you should see two screens in sync runni
42 Open terminal 2 41 Open terminal 2
43 $ bin/test_mqtt_pub 42 $ bin/test_mqtt_pub
44 ``` 43 ```
45 -Screen 2 is sending, Screen 1 is receiving.  
46 - 44 +Screen 2 is sending, Screen 1 is receiving.
47 \ No newline at end of file 45 \ No newline at end of file