xpressinsight.ExecModeLoad
xpressinsight.ExecModeLoad |
Purpose
Decorator class for the built-in
LOAD execution mode. Use this decorator to decorate exactly one class method of an Insight application.
Example
Example of defining a load mode.
>>> @xi.ExecModeLoad(descr="Loads input data.") ... def load(self): ... pass
Related topics