mirror of https://github.com/v2ray/v2ray-core
optimize for small number of tasks
parent
cbca610cce
commit
3620ebfc11
|
@ -56,6 +56,15 @@ func Parallel(tasks ...Task) ExecutionOption {
|
||||||
|
|
||||||
func Sequential(tasks ...Task) ExecutionOption {
|
func Sequential(tasks ...Task) ExecutionOption {
|
||||||
return func(c *executionContext) {
|
return func(c *executionContext) {
|
||||||
|
if len(tasks) == 0 {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if len(tasks) == 1 {
|
||||||
|
c.tasks = append(c.tasks, tasks[0])
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
c.tasks = append(c.tasks, func() error {
|
c.tasks = append(c.tasks, func() error {
|
||||||
return execute(tasks...)
|
return execute(tasks...)
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue