resumeAll method

void resumeAll()

Resume all workers in the group

Implementation

void resumeAll() {
  for (final handle in _handles) {
    if (!handle.isDisposed) {
      handle.resume();
    }
  }
}