Wait waits for the execution for all the conditions in a MultipleExecuted
()
| 41 | |
| 42 | // Wait waits for the execution for all the conditions in a MultipleExecuted |
| 43 | func (m MultipleExecuted) Wait() { |
| 44 | for _, cond := range m { |
| 45 | cond.Wait() |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // Err returns a composition of the errors raised by the individual |
| 50 | // execution components or nil if there is no error. |