Codebase list golang-github-vbauerster-mpb / 7e6c4e4
inc total bar asynchronously Vladimir Bauer 3 years ago
1 changed file(s) with 1 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
119119 for !bar.Completed() {
120120 n := rand.Int63n(10) + 1
121121 bar.IncrInt64(n)
122 tb.IncrInt64(n)
122 go tb.IncrInt64(n)
123123 time.Sleep(time.Duration(n) * max / 10)
124124 }
125125 bar.Wait()