This is the function that gets called when the workflow is run and the operator starts running.
This is the function that gets called when the workflow is run and the operator starts running.
Execution context of the operator.
The input to the operator.
The parameter values to the operator.
The listener object to communicate information back to the console.
The output from the execution.
This is called when the user clicks on 'stop'.
This is called when the user clicks on 'stop'. If the operator is currently running, this function gets called while 'onExecution' is still running. So it's the developer's responsibility to properly stop whatever is going within 'onExecution'.
Execution context of the operator.
The listener object to communicate information back to the console.
This is called to generate the visual output for the results console.
This is called to generate the visual output for the results console. If the developer does not override it, we try OperatorGUINode#onOutputVisualization, which predated this, so we keep for compatibility.
Execution context of the operator.
The input to the operator.
The output from the execution.
The parameter values to the operator.
The listener object to communicate information back to the console.
:: AlpineSdkApi :: A separate instance of operator plugin runtime gets instantiated for each 'run' of the workflow (or a 'step-run'). When the run is finished, the instance will get deleted/garbage-collected without reuses for subsequent runs.