ScenarioTaskExecute Method |
This function is the main entry point into the task when it is run on a host
Namespace:
AGI.STKParallel.PluginCore
Assembly:
AGI.STKParallel.PluginCore (in AGI.STKParallel.PluginCore.dll) Version: 12.9.0.1601 (12.9.0.1601)
Syntax public abstract void Execute(
IAgStkObjectRoot root,
IReportProgress progress,
ILogger logger,
Func<bool> isCancelling
)
Public MustOverride Sub Execute (
root As IAgStkObjectRoot,
progress As IReportProgress,
logger As ILogger,
isCancelling As Func(Of Boolean)
)
Parameters
- root
- Type: IAgStkObjectRoot
The STK root object. - progress
- Type: AGI.STKParallel.PluginCoreIReportProgress
The progress reporter used to update the task's percent complete. - logger
- Type: AGI.STKParallel.PluginCoreILogger
The logger used to log debug statements on the host as the task executes. - isCancelling
- Type: SystemFuncBoolean
A function that returns true if the task is in the process of being cancelled.
See Also