GetResults returns the action results
()
| 65 | |
| 66 | // GetResults returns the action results |
| 67 | func (e *Executor) GetResults() []ActionResult { |
| 68 | e.resultsMu.Lock() |
| 69 | defer e.resultsMu.Unlock() |
| 70 | return e.results |
| 71 | } |
| 72 | |
| 73 | // recordResult records an action result |
| 74 | func (e *Executor) recordResult(result ActionResult) { |