resubscribes method
Re-subscribe to all paths
Implementation
Future<void> resubscribes() async {
_listening = true;
try {
await _subscribes();
} catch (msg) {
if (_logThrowEnabled) rethrow;
log(msg);
}
}
Re-subscribe to all paths
Future<void> resubscribes() async {
_listening = true;
try {
await _subscribes();
} catch (msg) {
if (_logThrowEnabled) rethrow;
log(msg);
}
}