sp-react-native-mqtt icon indicating copy to clipboard operation
sp-react-native-mqtt copied to clipboard

how to set durability when subscribe topic?

Open liveforownhappiness opened this issue 6 months ago • 0 comments

My code :

` onConnect() { const self = this;

self.client?.on('connect', function () {
  self.client?.subscribe(self.topic, 1);
});

} `

I cannot get message after connect which I received when mqtt disconnect.(clientId is same)

liveforownhappiness avatar Aug 06 '24 07:08 liveforownhappiness