awaitgroup
awaitgroup copied to clipboard
Wait for a collection of async tasks to finish.
Results
2
awaitgroup issues
Sort by
recently updated
recently updated
newest added
`futures` crate provides a useful synchronization primitive `AtomicWaker`. I think it is a better choice over `Mutex`.
What a good waitgroup implementation in rust! This PR does two things: 1. Support for child `WaitGroup`. Child `WaitGroup` can derive `Worker`s and `wait` for all `Workers` finish executing like...