From 0ae81d55702537be5e0a5fda7d597db21fb14310 Mon Sep 17 00:00:00 2001 From: nxshock Date: Wed, 3 Feb 2021 18:54:32 +0500 Subject: [PATCH] Add more info to README file --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 7f68026..b3cb64b 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,9 @@ func f(i int) error { } func main() { - worker := gwp.New(4) + + worker := gwp.New(4) // Create pool with specified number of workers + worker.EstimateCount = 100 // Set estimate jobs count count to show progress for i := 0; i < 100; i++ { n := i