Purpose
Decorator class for the built-in
RUN execution mode. Use this decorator to decorate exactly one class method of an Insight application.
Example
Example of defining a run mode.
>>> @xi.ExecModeRun(descr="Computes the results.")
... def run(self):
... pass
Related topics