emqttc support MQTT V3.1/V3.1.1 Protocol Specification, and support parallel connections and auto reconnect to broker. This version of emqttc requires Erlang R20.
- Both MQTT V3.1/V3.1.1 Protocol Support
- QoS0, QoS1, QoS2 Publish and Subscribe
- TCP/SSL Socket Support
- Reconnect automatically
- Keepalive and ping/pong
examples/simple_example.erl
%% connect to broker
{ok, C} = emqttc:start_link([{host, "localhost"}, {client_id, <<"simpleClient">>}]),
%% subscribe
emqttc:subscribe(C, <<"TopicA">>, qos0),
%% publish
emqttc:publish(C, <<"TopicA">>, <<"Payload...">>),
%% receive message
receive
{publish, Topic, Payload} ->
io:format("Message Received from ~s: ~p~n", [Topic, Payload])
after
1000 ->
io:format("Error: receive timeout!~n")
end,
%% disconnect from broker
emqttc:disconnect(C).
examples/gen_server_example.erl
...
%% Connect to broker when init
init(_Args) ->
{ok, C} = emqttc:start_link([{host, "localhost"},
{client_id, <<"simpleClient">>},
{logger, info}]),
emqttc:subscribe(C, <<"TopicA">>, qos1),
self() ! publish,
{ok, #state{mqttc = C, seq = 1}}.
%% Receive Publish Message from TopicA...
handle_info({publish, Topic, Payload}, State) ->
io:format("Message from ~s: ~p~n", [Topic, Payload]),
{noreply, State};
%% Client connected
handle_info({mqttc, C, connected}, State = #state{mqttc = C}) ->
io:format("Client ~p is connected~n", [C]),
emqttc:subscribe(C, <<"TopicA">>, 1),
emqttc:subscribe(C, <<"TopicB">>, 2),
self() ! publish,
{noreply, State};
%% Client disconnected
handle_info({mqttc, C, disconnected}, State = #state{mqttc = C}) ->
io:format("Client ~p is disconnected~n", [C]),
{noreply, State};
$ make
Connect to MQTT Broker:
{ok, C1} = emqttc:start_link([{host, "t.emqtt.io"}]).
%% with name 'emqttclient'
{ok, C2} = emqttc:start_link(emqttclient, [{host, "t.emqtt.io"}]).
-type mqttc_opt() :: {host, inet:ip_address() | string()}
| {port, inet:port_number()}
| {client_id, binary()}
| {clean_sess, boolean()}
| {keepalive, non_neg_integer()}
| {proto_ver, mqtt_vsn()}
| {username, binary()}
| {password, binary()}
| {will, list(tuple())}
| {connack_timeout, pos_integer()}
| {puback_timeout, pos_integer()}
| {suback_timeout, pos_integer()}
| ssl | {ssl, [ssl:ssloption()]}
| auto_resub
| {logger, atom() | {atom(), atom()}}
| {reconnect, non_neg_integer() | {non_neg_integer(), non_neg_integer()} | false}.
Option | Value | Default | Description | Example |
---|---|---|---|---|
host | inet:ip_address() or string() | "locahost" | Broker Address | "locahost" |
port | inet:port_number() | 1883 | Broker Port | |
client_id | binary() | random clientId | MQTT ClientId | <<"slimpleClientId">> |
clean_sess | boolean() | true | MQTT CleanSession | |
keepalive | non_neg_integer() | 60 | MQTT KeepAlive(secs) | |
proto_ver | mqtt_vsn() | 4 | MQTT Protocol Version | 3,4 |
username | binary() | |||
password | binary() | |||
will | list(tuple()) | undefined | MQTT Will Message | [{qos, 1}, {retain, false}, {topic, <<"WillTopic">>}, {payload, <<"I die">>}] |
connack_timeout | pos_integer() | 30 | ConnAck Timeout | {connack_timeout, 10} |
ssl | list(ssl:ssloption()) | [] | SSL Options | [{certfile, "path/to/ssl.crt"}, {keyfile, "path/to/ssl.key"}]}] |
auto_resub | ||||
logger | atom() or {atom(), atom()} | info | Client Logger | error, {opt, info}, {lager, error} |
reconnect | false, or integer() | false | Client Reconnect | false, 4, {4, 60} |
Default Clean Session value is true, If you want to set Clean Session = false, add option {clean_sess, false}
.
emqttc:start_link([{host, "t.emqtt.io"}, {clean_sess, false}]).
Default KeepAlive value is 60(secs), If you want to change KeepAlive, add option {keepalive, 300}
. No KeepAlive to use {keepalive, 0}
.
emqttc:start_link([{host, "t.emqtt.io"}, {keepalive, 60}]).
Connect to broker with SSL Socket:
emqttc:start_link([{host, "t.emqtt.io"}, {port, 8883}, ssl]).
emqttc:start_link([{host, "t.emqtt.io"}, {port, 8883}, {ssl, [
{certfile, "path/to/ssl.crt"},
{keyfile, "path/to/ssl.key"}]}
]).
More SSL Options: http://erlang.org/doc/man/ssl.html
Use 'logger' option to configure emqttc log mechanism. Default log to stdout with 'info' level.
%% log to stdout with info level
emqttc:start_link([{logger, info}]).
%% log to otp standard error_logger with warning level
emqttc:start_link([{logger, {error_logger, warning}}]).
%% log to lager with error level
emqttc:start_link([{logger, {lager, error}}]).
Module | Description |
---|---|
stdout | io:format |
error_logger | error_logger |
lager | lager |
all
debug
info
warning
error
critical
none
Use 'reconnect' option to configure emqttc reconnect policy. Default is 'false'.
Reconnect Policy: {MinInterval, MaxInterval, MaxRetries}
.
%% reconnect with 4(secs) min interval, 60 max interval
emqttc:start_link([{reconnect, 4}]).
%% reconnect with 3(secs) min interval, 120(secs) max interval and 10 max retries.
emqttc:start_link([{reconnect, {3, 120, 10}}]).
'auto_resub' option to let emqttc resubscribe topics when reconnected.
%% Resubscribe topics automatically when reconnected.
emqttc:start_link([auto_resub, {reconnect, 4}]).
%% publish(Client, Topic, Payload) with Qos0
emqttc:publish(Client, <<"/test/TopicA">>, <<"Payload...">>).
%% publish(Client, Topic, Payload, Qos)
emqttc:publish(Client, <<"Topic">>, <<"Payload">>, 1).
emqttc:publish(Client, <<"Topic">>, <<"Payload">>, qos1).
%% publish(Client, Topic, Payload, PubOpts) with options
emqttc:publish(Client, <<"/test/TopicA">>, <<"Payload...">>, [{qos, 1}, {retain, true}]).
Publish qos1, qos2 messages and wait until puback, pubrel received.
-spec sync_publish(Client, Topic, Payload, PubOpts) -> {ok, MsgId} | {error, timeout} when
Client :: pid() | atom(),
Topic :: binary(),
Payload :: binary(),
PubOpts :: mqtt_qosopt() | [mqtt_pubopt()],
MsgId :: mqtt_packet_id().
%% subscribe topic with Qos0
emqttc:subscribe(Client, <<"Topic">>).
%% subscribe topic with qos
emqttc:subscribe(Client, {<<"Topic">>, 1}).
emqttc:subscribe(Client, {<<"Topic">>, qos1}).
%% or
emqttc:subscribe(Client, <<"Topic">>, 1).
emqttc:subscribe(Client, <<"Topic">>, qos2).
%% subscribe topics
emqttc:subscribe(Client, [{<<"Topic1">>, 1}, {<<"Topic2">>, qos2}]).
%% unsubscribe
emqttc:unsubscribe(Client, <<"Topic">>).
emqttc:unsubscribe(Client, [<<"Topic1">>, <<"Topic2">>]).
Subscribe topics and wait for suback.
-spec sync_subscribe(Client, Topics) -> {ok, mqtt_qos() | [mqtt_qos()]} when
Client :: pid() | atom(),
Topics :: [{binary(), mqtt_qos()}] | {binary(), mqtt_qos()} | binary().
pong = emqttc:ping(Client).
emqttc:disconnect(Client).
emqttc:topics(Client).
The MIT License (MIT)