Wait for the termination of n goroutines

后端 未结 3 1446
心在旅途
心在旅途 2021-02-05 13:47

I need to start a huge amount of goroutines and wait for their termination. The intuitive way seems to use a channel to wait till all of them are finished :

pack         


        
3条回答
  •  失恋的感觉
    2021-02-05 14:39

    This task in not exactly trivial, it's quite easy to write a buggy one. I recommend to use a ready made solution in the stdlib - sync.WaitGroup. Quoting from the link:

    A WaitGroup waits for a collection of goroutines to finish. The main goroutine calls Add to set the number of goroutines to wait for. Then each of the goroutines runs and calls Done when finished. At the same time, Wait can be used to block until all goroutines have finished.

提交回复
热议问题