sendChange method
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);
}