The initial subscription works fine for me in my use case. But in my application when a person logs out I have to unsubscribe all the subscriptions, for which I used unsubscribeAll() method. When the person logs in again, I am again calling the subscribe method to, get the listeners live. But its not working.
The initial subscription works fine for me in my use case. But in my application when a person logs out I have to unsubscribe all the subscriptions, for which I used unsubscribeAll() method. When the person logs in again, I am again calling the subscribe method to, get the listeners live. But its not working.
This is how I subscribe to channel and
this.pubnub.unsubscribeAll();
this is how I unsubscribe everything.Am I doing something wrong here?