Packages

Elixir wrapper for the emqttc library. Some of the features: Reconnection, offline queueing, gen_* like callback APIs, QoS 0-2.

Current section

Files

Jump to
exmqttc README.md
Raw

README.md

# Exmqttc
Elixir wrapper for the emqttc library.
emqttc must currently be installed manually as it is not available on hex (yet).
## Installation
The package can be installedby adding `exmqttc` and `emqttc` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[{:exmqttc, "~> 0.1.0"}, {:emqttc, github: "emqtt/emqttc"}]
end
```
The docs can be found at [https://hexdocs.pm/exmqttc](https://hexdocs.pm/exmqttc).