Forráskód Böngészése

optimize for small number of tasks

Darien Raymond 7 éve
szülő
commit
3620ebfc11
1 módosított fájl, 9 hozzáadás és 0 törlés
  1. 9 0
      common/task/task.go

+ 9 - 0
common/task/task.go

@@ -56,6 +56,15 @@ func Parallel(tasks ...Task) ExecutionOption {
 
 func Sequential(tasks ...Task) ExecutionOption {
 	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 {
 			return execute(tasks...)
 		})