Go WaitGroup: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
<syntaxhighlight lang='go'> | <syntaxhighlight lang='go'> | ||
import "sync" | |||
func aFunction(wg *sync.WaitGroup, s string) { | func aFunction(wg *sync.WaitGroup, s string) { | ||
defer wg.Done() | defer wg.Done() |
Revision as of 21:37, 1 September 2023
External
Internal
Overview
A WaitGroup
is a counting semaphore that waits for a set of goroutines to finish.
The main goroutine calls Add()
to set the number of goroutines to wait for. Then it can block on Wait()
until all other goroutines have finished. When each of the counted goroutines runs, they should call Done()
when finished, to increment the counting semaphore.
import "sync"
func aFunction(wg *sync.WaitGroup, s string) {
defer wg.Done()
fmt.Println(s)
}
...
wg := sync.WaitGroup{}
wg.Add(2)
go aFunction(&wg, "A")
go aFunction(&wg, "B")
wg.Wait()
fmt.Println("main is done")
Note that the WaitGroup
instance must be passed to the functions executed on the counted goroutines by pointer, not value. Why?