mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
13 lines
252 B
Go
13 lines
252 B
Go
package fx
|
|
|
|
import "github.com/zeromicro/go-zero/core/threading"
|
|
|
|
// Parallel runs fns parallelly and waits for done.
|
|
func Parallel(fns ...func()) {
|
|
group := threading.NewRoutineGroup()
|
|
for _, fn := range fns {
|
|
group.RunSafe(fn)
|
|
}
|
|
group.Wait()
|
|
}
|