MCPcopy Create free account
hub / github.com/araddon/qlbridge / TaskParallel

Struct TaskParallel

exec/task_parallel.go:25–30  ·  view source on GitHub ↗

A parallel set of tasks, this starts each child task and offers up an output channel that is a merger of each child --> \ --> - -> --> /

Source from the content-addressed store, hash-verified

23// --> - ->
24// --> /
25type TaskParallel struct {
26 *TaskBase
27 in TaskRunner
28 runners []TaskRunner
29 tasks []Task
30}
31
32func NewTaskParallel(ctx *plan.Context) *TaskParallel {
33 return &TaskParallel{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected