* @tutorial [EC_TASK_DIRTY] * Task `dirty()` calls typically originate from a trigger of EC_FULL_UPDATE_CYCLE and * EC_PARTIAL_UPDATE_CYCLE) (See comments in EC_CYCLE. Generally, task dirty propagates * to downstream tasks. * Task dirty leads to the `StageHandler['reset']` or
()
| 251 | * which discards the previous result and starts over the processing. |
| 252 | */ |
| 253 | dirty(): void { |
| 254 | this._dirty = true; |
| 255 | this._onDirty && this._onDirty(this.context); |
| 256 | } |
| 257 | |
| 258 | private _doProgress( |
| 259 | progress: TaskProgressCallback<Ctx>, |
no outgoing calls
no test coverage detected