WithParallel tells the [Executor] to run tasks given in the same call in parallel.
(parallel bool)
| 472 | // WithParallel tells the [Executor] to run tasks given in the same call in |
| 473 | // parallel. |
| 474 | func WithParallel(parallel bool) ExecutorOption { |
| 475 | return ¶llelOption{parallel} |
| 476 | } |
| 477 | |
| 478 | type parallelOption struct { |
| 479 | parallel bool |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…