You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PubnubError("[SubscribeToGroup]: Failed to subscribe to channel group.");
1517
+
UPubnubUtilities::CallPubnubDelegateWithInvalidArgumentResult(OnSubscribeToGroupResponse, "[SubscribeToGroup]: Failed to subscribe to channel group.");
PubnubError("Failed to unsubscribe from channel. There is no such subscription");
1535
+
PubnubError("[UnsubscribeFromChannel]: There is no such subscription. Aborting operation.", EPubnubErrorType::PET_Warning);
1536
+
UPubnubUtilities::CallPubnubDelegateWithInvalidArgumentResult(OnUnsubscribeFromChannelResponse, "[UnsubscribeFromChannel]: There is no such subscription. Aborting operation.");
1533
1537
return;
1534
1538
}
1535
1539
1540
+
//All subscription related operations are non blocking, so we lock ActionThread manually,
1541
+
//make it wait with calling other function until we have subscription result
1542
+
QuickActionThread->LockForSubscribeOperation();
1543
+
1536
1544
//Remove subscription listener and unsubscribe with subscription
PubnubError("Failed to unsubscribe from channel. There is no such subscription");
1567
+
PubnubError("[UnsubscribeFromGroup]: There is no such subscription. Aborting operation.", EPubnubErrorType::PET_Warning);
1568
+
UPubnubUtilities::CallPubnubDelegateWithInvalidArgumentResult(OnUnsubscribeFromGroupResponse, "[UnsubscribeFromGroup]: There is no such subscription. Aborting operation.");
1557
1569
return;
1558
1570
}
1559
1571
1572
+
//All subscription related operations are non blocking, so we lock ActionThread manually,
1573
+
//make it wait with calling other function until we have subscription result
1574
+
QuickActionThread->LockForSubscribeOperation();
1575
+
1560
1576
//Remove subscription listener and unsubscribe with subscription
0 commit comments