Sets whether the task should run in interactive mode
(mut self, is_interactive: bool)
| 169 | |
| 170 | /// Sets whether the task should run in interactive mode |
| 171 | pub fn with_interactive(mut self, is_interactive: bool) -> Self { |
| 172 | self.is_interactive = is_interactive; |
| 173 | self |
| 174 | } |
| 175 | |
| 176 | /// Sets the parent task ID that this task is chained to. |
| 177 | /// When set, the task will wait for the parent to complete before executing, |
no outgoing calls