Ctx returns the errgroup's derived context. It cancels when the parent context fires (signal) or any child process exits.
()
| 580 | // Ctx returns the errgroup's derived context. It cancels when the |
| 581 | // parent context fires (signal) or any child process exits. |
| 582 | func (g *procGroup) Ctx() context.Context { return g.ctx } |
| 583 | |
| 584 | // poll calls cond every interval until it returns a value and true, |
| 585 | // or the context is canceled. If cond returns a non-nil error, |
no outgoing calls