Go WaitGroup: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
=Internal=
=Internal=
* [[Go_Package_sync#WaitGroup|The <tt>sync</tt> package]]
* [[Go_Package_sync#WaitGroup|The <tt>sync</tt> package]]
* [[Go_Language_Goroutines#WaitGroup|Goroutines]]


=TO DISTRIBUTE=
=TO DISTRIBUTE=

Revision as of 21:11, 1 September 2023

Internal

TO DISTRIBUTE

A WaitGroup is a counting semaphore that 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.

Using a waitGroup to wait for goroutines to finish before exiting main(): playground/go/concurrency/waitGroup.go