Added conexec package to Goroutines (#2880)

This commit is contained in:
ITcathyh 2020-01-11 10:33:57 +08:00 committed by Andy Pan
parent 5496286968
commit c092bc8433

View File

@ -808,6 +808,7 @@ Please take a quick gander at the [contribution guidelines](https://github.com/a
* [artifex](https://github.com/borderstech/artifex) - Simple in-memory job queue for Golang using worker-based dispatching.
* [async](https://github.com/studiosol/async) - A safe way to execute functions asynchronously, recovering them in case of panic.
* [breaker](https://github.com/kamilsk/breaker) - Flexible mechanism to make execution flow interruptible.
* [conexec](https://github.com/ITcathyh/conexec) - A concurrent toolkit to help execute funcs concurrently in an efficient and safe way.It supports specifying the overall timeout to avoid blocking and uses goroutine pool to improve efficiency.
* [cyclicbarrier](https://github.com/marusama/cyclicbarrier) - CyclicBarrier for golang.
* [go-floc](https://github.com/workanator/go-floc) - Orchestrate goroutines with ease.
* [go-flow](https://github.com/kamildrazkiewicz/go-flow) - Control goroutines execution order.