resumeAllWorkers method

void resumeAllWorkers()

Resume all workers managed by this controller

Implementation

void resumeAllWorkers() {
  if (_checkDisposed('resumeAllWorkers')) return;

  _batchWorkerOperation(
    (worker) => worker.resume(),
    (group) => group.resumeAll(),
  );

  ZenLogger.logDebug('Controller $runtimeType: All workers resumed');
}