go-do-work
go-do-work copied to clipboard
Dynamically resizable pools of goroutines which can queue an infinite number of jobs.
Results
1
go-do-work issues
Sort by
recently updated
recently updated
newest added
Hi~ I read the README.md of go-do-work. About Batch code example, something is wrong? ```go type adder struct { count uint32 } func (a adder) DoWork() { a.count++ time.Sleep(1 *...