syncAll method

void syncAll()

Start sync for all features, respecting priority and concurrency.

Implementation

void syncAll() {
  if (_disposed) return;

  for (final featureKey in _handlers.keys) {
    if (!_pendingQueue.contains(featureKey)) {
      _pendingQueue.add(featureKey);
    }
  }

  _sortByPriority();
  _processPending();
}