Go Package sync: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 21: Line 21:
:Using a <tt>waitGroup</tt> to wait for goroutines to finish before exiting <tt>main()</tt>: [https://github.com/NovaOrdis/playground/blob/master/go/concurrency/waitGroup.go playground/go/concurrency/waitGroup.go]
:Using a <tt>waitGroup</tt> to wait for goroutines to finish before exiting <tt>main()</tt>: [https://github.com/NovaOrdis/playground/blob/master/go/concurrency/waitGroup.go playground/go/concurrency/waitGroup.go]
</blockquote>
</blockquote>
=Mutex=
* <tt>[https://golang.org/pkg/sync/#Mutex sync.Mutex]</tt>

Revision as of 17:33, 20 April 2016

External

Internal

Overview

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

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.

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

Mutex