combinedWorker<A, S> function
Implementation
Worker<A, S> combinedWorker<A, S>(
Iterable<Worker<A, S>> workers
) => worker((context, action) async {
for (Worker<A, S> worker in workers) {
await worker.work(context, action);
}
});