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());

  if (ZenConfig.enableDebugLogs) {
    ZenLogger.logDebug('Controller $runtimeType: All workers resumed');
  }
}