mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
28 lines
613 B
Go
28 lines
613 B
Go
package task
|
|
|
|
import "context"
|
|
|
|
// Deprecated: Use Group instead
|
|
func Run(ctx context.Context, tasks ...func() error) error {
|
|
var group Group
|
|
for _, task := range tasks {
|
|
currentTask := task
|
|
group.Append0(func(ctx context.Context) error {
|
|
return currentTask()
|
|
})
|
|
}
|
|
return group.Run(ctx)
|
|
}
|
|
|
|
// Deprecated: Use Group instead
|
|
func Any(ctx context.Context, tasks ...func(ctx context.Context) error) error {
|
|
var group Group
|
|
for _, task := range tasks {
|
|
currentTask := task
|
|
group.Append0(func(ctx context.Context) error {
|
|
return currentTask(ctx)
|
|
})
|
|
}
|
|
group.FastFail()
|
|
return group.Run(ctx)
|
|
}
|