1.0.3 • Published 6 years ago

react-native-mqtt-js v1.0.3

Weekly downloads
3
License
ISC
Repository
github
Last release
6 years ago

import MqttClient from "./mqtt";

const mqttClientParams = { onConnected: (e) => this._onConnected(e), onLostConnect: (e) => this._onLostConnect(e), onArrived: (e) => this._onArrived(e), };

this.MqttClient = new MqttClient({ ...mqttClientParams, name: name, host: host, port: mqttPort, clientId: clientId:, });

this.MqttClient .connect();