resubscribeToRemoteChanges method

Future<void> resubscribeToRemoteChanges()

Re-subscribes to remote change events.

This method re-enables listening to remote change notifications after a previous call to unsubscribeFromRemoteChanges. This restores 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> resubscribeToRemoteChanges() async {
  await remoteAdapter.resubscribeToChanges();
  _isSubscribedToRemoteChanges = true;
}