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.
34 lines
451 B
34 lines
451 B
1 year ago
|
package threading
|
||
|
|
||
|
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) RunSafe(fn func()) {
|
||
|
g.waitGroup.Add(1)
|
||
|
|
||
|
GoSafe(func() {
|
||
|
defer g.waitGroup.Done()
|
||
|
fn()
|
||
|
})
|
||
|
}
|
||
|
|
||
|
func (g *RoutineGroup) Wait() {
|
||
|
g.waitGroup.Wait()
|
||
|
}
|