pauseAll method

void pauseAll()

Pause all workers in the group

Implementation

void pauseAll() {
  for (final handle in _handles) {
    if (!handle.isDisposed) {
      handle.pause();
    }
  }
}