start method
Starts all workers in the pool.
Implementation
Future<void> start() async {
for (final worker in _workers) {
await worker.start();
}
}
Starts all workers in the pool.
Future<void> start() async {
for (final worker in _workers) {
await worker.start();
}
}