You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
324 B
25 lines
324 B
package queue
|
|
|
|
import "sync"
|
|
|
|
type routineGroup struct {
|
|
waitGroup sync.WaitGroup
|
|
}
|
|
|
|
func newRoutineGroup() *routineGroup {
|
|
return new(routineGroup)
|
|
}
|
|
|
|
func (g *routineGroup) Run(fn func()) {
|
|
g.waitGroup.Add(1)
|
|
|
|
go func() {
|
|
defer g.waitGroup.Done()
|
|
fn()
|
|
}()
|
|
}
|
|
|
|
func (g *routineGroup) Wait() {
|
|
g.waitGroup.Wait()
|
|
}
|