resubscribeAllToRemoteChanges method
Re-subscribes all managers to remote change events.
This method calls DatumManager.resubscribeToRemoteChanges on all registered managers, restoring the normal flow of remote change events being processed and applied locally.
Note: This only affects remote change subscriptions and does not impact local change processing or synchronization operations.
Implementation
Future<void> resubscribeAllToRemoteChanges() async {
await Future.wait(
_managers.allManagers.map((manager) => manager.resubscribeToRemoteChanges()),
);
}