cancelAll method
Unsubscribe to all StreamSubscriptions and remove them from the list
For example:
subxList.cancelAll();
Implementation
void cancelAll() {
while (length > 0) {
cancelAt(0);
}
}
Unsubscribe to all StreamSubscriptions and remove them from the list
For example:
subxList.cancelAll();
void cancelAll() {
while (length > 0) {
cancelAt(0);
}
}