start method

Future<void> start()

Starts all workers in the pool.

Implementation

Future<void> start() async {
  for (final worker in _workers) {
    await worker.start();
  }
}