UNPKG

aws-crt

Version:

NodeJS bindings to the aws-c-* libraries

33 lines 1.22 kB
"use strict"; /* * Copyright 2010-2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ Object.defineProperty(exports, "__esModule", { value: true }); var QoS; (function (QoS) { QoS[QoS["AtMostOnce"] = 0] = "AtMostOnce"; QoS[QoS["AtLeastOnce"] = 1] = "AtLeastOnce"; QoS[QoS["ExactlyOnce"] = 2] = "ExactlyOnce"; })(QoS = exports.QoS || (exports.QoS = {})); /** Represents the message sent when a client is found to be offline by the broker */ class MqttWill { constructor(topic, qos, payload, retain = false) { this.topic = topic; this.qos = qos; this.payload = payload; this.retain = retain; } } exports.MqttWill = MqttWill; //# sourceMappingURL=mqtt.js.map