NotebookCellExecution
A NotebookCellExecution is how notebook controller modify a notebook cell as it is executing.
When a cell execution object is created, the cell enters the {@linkcode NotebookCellExecutionState.Pending Pending} state. When {@linkcode NotebookCellExecution.start start(...)} is called on the execution task, it enters the {@linkcode NotebookCellExecutionState.Executing Executing} state. When {@linkcode NotebookCellExecution.end end(...)} is called, it enters the {@linkcode NotebookCellExecutionState.Idle Idle} state.
Properties
The cell for which this execution has been created.
Set and unset the order of this cell execution.
A cancellation token which will be triggered when the cell execution is canceled from the UI.
Functions
Append to the output of the cell that is executing or to another cell that is affected by this execution.
Append output items to existing cell output.
Clears the output of the cell that is executing or of another cell that is affected by this execution.
Replace the output of the cell that is executing or of another cell that is affected by this execution.
Replace all output items of existing cell output.