sendChange method

  1. @override
Future<void> sendChange(
  1. Change change
)
override

Enqueue change for the relay.

The change is delivered at-least-once: it leaves the queue only when the relay acknowledges it, surviving reconnects in between.

Implementation

@override
Future<void> sendChange(Change change) async {
  _syncManager.enqueue(change);
}