SetTaskTimeout sets the timeout for task completion
(timeout time.Duration)
| 60 | |
| 61 | // SetTaskTimeout sets the timeout for task completion |
| 62 | func (e *Executor) SetTaskTimeout(timeout time.Duration) { |
| 63 | e.taskTimeout = timeout |
| 64 | } |
| 65 | |
| 66 | // GetResults returns the action results |
| 67 | func (e *Executor) GetResults() []ActionResult { |