Golang : Wait and sync.WaitGroup example
There are time when we need to get multiple things done concurrently first and make sure the processes result are synchronized before moving on to the next process. This can be done with the Sync package http://golang.org/pkg/sync/ in Golang.
For example, a template HTML page must wait for the database queries to be completed before being rendered to PDF and write to http.ResponseWriter.
This example below will simulate a waitgroup with some time delay. You can modify it to implement your own waitgroup for your code.
package main
import (
"fmt"
"sync"
"time"
)
func f(w *sync.WaitGroup, sec int) {
fmt.Println("Time : ", time.Now())
time.Sleep(time.Duration(sec) * time.Second)
fmt.Println("Time : ", time.Now())
w.Done()
fmt.Println("Wait completed")
}
func main() {
// send query to database and wait
fmt.Println("Starting to wait")
var wg sync.WaitGroup
wg.Add(2) // for example, wait for 2 concurrent queries before this wait group is done
go func(swg *sync.WaitGroup, sec int) {
fmt.Println("Time : ", time.Now())
<-time.After(time.Duration(sec) * time.Millisecond)
swg.Done()
}(&wg, 2500)
go f(&wg, 4) // simulate a concurrent wait 4 second
wg.Wait()
fmt.Println("Finished")
}
References :
See also : Golang : Concurrency and goroutine example
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+16k Golang : How to check if input from os.Args is integer?
+10.2k Golang : Embed secret text string into binary(executable) file
+7.4k SSL : How to check if current certificate is sha1 or sha2 from command line
+23.2k Golang : Get ASCII code from a key press(cross-platform) example
+11k Golang : Roll the dice example
+7.3k Golang : Hue, Saturation and Value(HSV) with OpenCV example
+19.4k Golang : Get current URL example
+10.5k Golang : Resolve domain name to IP4 and IP6 addresses.
+5.6k Get website traffic ranking with Similar Web or Alexa
+4.2k Javascript : How to show different content with noscript?
+5.3k Golang : Get S3 or CloudFront object or file information
+11k Golang : Calculate Relative Strength Index(RSI) example