enqueueMutation method
Implementation
@override
Future<void> enqueueMutation(PendingMutation mutation) async {
await _tracked(() async {
await _ensureInitialized();
await _locks.mutations.synchronized(() async {
await _ensureQueueLoadedUnsafe();
_queue.add(mutation);
await _appendJournalUnsafe({
'op': 'enqueue',
'mutation': mutation.toJson(),
});
});
});
}