Go Package sync: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 17: Line 17:
* <tt>[https://golang.org/pkg/sync/#WaitGroup sync.WaitGroup]</tt>  
* <tt>[https://golang.org/pkg/sync/#WaitGroup sync.WaitGroup]</tt>  


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


Example: [[Go_Recipes#waitGroup_example|<tt>WaitGroup</tt> example]].
Example: [[Go_Recipes#waitGroup_example|<tt>WaitGroup</tt> example]].

Revision as of 20:54, 2 April 2016

External

Internal

Overview

The "sync" package provides synchronization primitives, to be used when synchronization between goroutines is needed.

Elements

WaitGroup

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.

Example: WaitGroup example.