Done returns a channel where error or nil will be sent when the process exits. TODO: change this to Wait()
()
| 35 | // when the process exits. |
| 36 | // TODO: change this to Wait() |
| 37 | func (p *Process) Done() <-chan error { |
| 38 | return p.errCh |
| 39 | } |
| 40 | |
| 41 | // Manager manages a set of processes. |
| 42 | type Manager struct { |
no outgoing calls