-
Notifications
You must be signed in to change notification settings - Fork 1.4k
connection
The MqttConnection class represents a raw MQTT connection, both
on the server and on the client side. For client side operations,
it is strongly recommended that MqttClient
is used, as
MqttConnection
requires a great deal of additional boilerplate
such as setting up error handling and ping request/responses.
If such fine grained control is required, MqttConnection
can
be instantiated using the mqtt.createConnection
method.
MqttServerClient
is an unaltered subclass of MqttConnection
and can be used in exactly the same way.
var mqtt = require('mqtt');
var conn = mqtt.createConnection(
1883,
'localhost',
function(err, client) {
if (err) throw err;
client.connect({
protocolId: 'MQIsdp',
protocolVersion: 3,
clientId: 'example',
keepalive: 30
});
client.on('connack', function(packet) {
if (packet.returnCode !== 0) {
throw 'Connect error'
}
client.publish({
topic: 'example',
payload: new Buffer('example', 'utf8')
});
});
});
Invalid arguments to the methods below will cause MqttConnection
to emit error
events, which, if unhandled, will cause the
program to terminate.
Starting from v0.3.0, an MqttConnection is just a Writable stream, so it can be piped, like so:
// stream is from somewhere, it might be a named pipe, a websocket, or whatever other transport
var mqtt = require("mqtt");
var conn = stream.pipe(new mqtt.MqttConnection());
conn.publish("hello", "world");
For all events below packet
will also contain all
of the information contained in the MQTT static header. This
includes cmd
, dup
, qos
and retain
even when they do not
apply to the packet. It will also contain the length
of
the packet.
MqttConnection#stream
exposes the underlining stream
object,
so you can retrieve all the TCP-related options, as exposed by Socket.
Send an MQTT connect packet.
options
supports the following properties:
-
protocolId
: Protocol ID, usuallyMQIsdp
.string
-
protocolVersion
: Protocol version, usually 3.number
-
keepalive
: keepalive period in seconds.number
-
clientId
: client ID.string
-
will
: the client's will message options.object
that supports the following properties:-
topic
: the will topic.string
-
payload
: the will payload.string
-
qos
: will qos level.number
-
retain
: will retain flag.boolean
-
-
clean
: the 'clean start' flag.boolean
-
username
: username for protocol v3.1.string
-
password
: password for protocol v3.1.string
Send an MQTT connack packet.
options
supports the following properties:
-
returnCode
: the return code of the connack, success is indicated by0
.number
Send an MQTT publish packet.
options
supports the following properties:
-
topic
: the topic to publish to.string
-
payload
: the payload to publish, defaults to an empty buffer.string
orbuffer
-
qos
: the quality of service level to publish on.number
-
messageId
: the message ID of the packet, required if qos > 0.number
-
retain
: retain flag.boolean
Send an MQTT [puback, pubrec, pubcomp, unsuback]
packet.
options
supports the following properties:
-
messageId
: the ID of the packet
Send an MQTT pubrel packet.
options
supports the following properties:
-
dup
: duplicate message flag -
messageId
: the ID of the packet
Send an MQTT subscribe packet.
options
supports the following properties:
-
dup
: duplicate message flag -
messageId
: the ID of the packet -
subscriptions
: a list of subscriptions of the form[{topic: a, qos: 0}, {topic: b, qos: 1}]
Send an MQTT suback packet.
options
supports the following properties:
-
granted
: a vector of granted QoS levels, of the form[0, 1, 2]
-
messageId
: the ID of the packet
Send an MQTT unsubscribe packet.
options
supports the following properties:
-
messageId
: the ID of the packet -
dup
: duplicate message flag -
unsubscriptions
: a list of topics to unsubscribe from, of the form["topic1", "topic2"]
Send an MQTT [pingreq, pingresp, disconnect]
packet.
Set the encoding of incoming publish payloads
encoding
: encoding of the payload. See buffer docs
###Event: 'connected'
function() {}
Emitted when the socket underlying the MqttConnection
is connected.
Note: only emitted by clients created using
mqtt.createConnection()
.
function(packet) {}
Emitted when an MQTT connect packet is received by the client.
packet
is an object that may have the following properties:
-
version
: the protocol version string -
versionNum
: the protocol version number -
keepalive
: the client's keepalive period -
clientId
: the client's ID -
will
: an object with the following keys:-
topic
: the client's will topic -
payload
: the will message -
retain
: will retain flag -
qos
: will qos level
-
-
clean
: clean start flag -
username
: v3.1 username -
password
: v3.1 password
function(packet) {}
Emitted when an MQTT connack packet is received by the client.
packet
is an object that may have the following properties:
-
returnCode
: the return code of the connack packet
function(packet) {}
Emitted when an MQTT publish packet is received by the client.
packet
is an object that may have the following properties:
-
topic
: the topic the message is published on -
payload
: the payload of the message -
messageId
: the ID of the packet -
qos
: the QoS level to publish at
function(packet) {}
Emitted when an MQTT [puback, pubrec, pubrel, pubcomp, unsuback]
packet is received by the client.
packet
is an object that may contain the property:
-
messageId
: the ID of the packet
function(packet) {}
Emitted when an MQTT subscribe packet is received.
packet
is an object that may contain the properties:
-
messageId
: the ID of the packet -
subscriptions
: an array of objects representing the subscribed topics, containing the following keys-
topic
: the topic subscribed to -
qos
: the qos level of the subscription
-
function(packet) {}
Emitted when an MQTT suback packet is received.
packet
is an object that may contain the properties:
-
messageId
: the ID of the packet -
granted
: a vector of granted QoS levels
function(packet) {}
Emitted when an MQTT unsubscribe packet is received.
packet
is an object that may contain the properties:
-
messageId
: the ID of the packet -
unsubscriptions
: a list of topics the client is unsubscribing from, of the form[topic1, topic2, ...]
function(packet){}
Emitted when an MQTT [pingreq, pingresp, disconnect]
packet is received.
packet
only includes static header information and can be ignored.