Initializing help system before first use

ResultData

ResultData


Purpose
Class which specifies how to handle result data within the Insight server.
Example
Example showing how to configure Insight to delete the result data when the scenario is queued for execution.
>>> @xi.AppConfig(name="My App",
...               version=xi.AppVersion(1, 0, 0),
...               result_data=xi.ResultData(
...                   delete=xi.ResultDataDelete.ON_QUEUE
...               ))
... class InsightApp(xi.AppBase):
...     pass