Add neilotoole/errgroup to Goroutines section (#3202)

* Add neilotoole/errgroup to Goroutines section

* neilotoole/errgroup entry had been alphabetized by the E in errgroup, instead of the N
This commit is contained in:
Neil O'Toole 2020-08-18 13:05:28 -06:00 committed by GitHub
parent 548ab2bbe0
commit 596d06f09d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -870,6 +870,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a
* [hands](https://github.com/duanckham/hands) - A process controller used to control the execution and return strategies of multiple goroutines. * [hands](https://github.com/duanckham/hands) - A process controller used to control the execution and return strategies of multiple goroutines.
* [Hunch](https://github.com/AaronJan/Hunch) - Hunch provides functions like: `All`, `First`, `Retry`, `Waterfall` etc., that makes asynchronous flow control more intuitive. * [Hunch](https://github.com/AaronJan/Hunch) - Hunch provides functions like: `All`, `First`, `Retry`, `Waterfall` etc., that makes asynchronous flow control more intuitive.
* [kyoo](https://github.com/dirkaholic/kyoo) - Provides an unlimited job queue and concurrent worker pools. * [kyoo](https://github.com/dirkaholic/kyoo) - Provides an unlimited job queue and concurrent worker pools.
* [neilotoole/errgroup](https://github.com/neilotoole/errgroup) - Drop-in alternative to `sync/errgroup`, limited to a pool of N worker goroutines.
* [nursery](https://github.com/arunsworld/nursery) - Structured concurrency in Go. * [nursery](https://github.com/arunsworld/nursery) - Structured concurrency in Go.
* [oversight](https://cirello.io/oversight) - Oversight is a complete implementation of the Erlang supervision trees. * [oversight](https://cirello.io/oversight) - Oversight is a complete implementation of the Erlang supervision trees.
* [parallel-fn](https://github.com/rafaeljesus/parallel-fn) - Run functions in parallel. * [parallel-fn](https://github.com/rafaeljesus/parallel-fn) - Run functions in parallel.