ITradeStudy3JobResult
Last update: 18.06.2026interface ITradeStudy3JobResult : ITradeStudy3JobInfo
Result of executing a job.
Author
Dave
Functions
| Name | Summary |
|---|---|
| cancelAsync | abstract fun cancelAsync() Cancel the operation asynchronously. |
| getDataHistory | abstract fun getDataHistory(): DataHistory Get the data history being used. |
| getNumRuns | abstract fun getNumRuns(): Int Get the number of runs. |
| getNumVariables | abstract fun getNumVariables(): Int Get the number of variables. |
| getVariableDisplayName | abstract fun getVariableDisplayName(index: Int): String Get the display name for the variable with the specified index. |
| getVariableEquation | abstract fun getVariableEquation(index: Int): String Get the equation for the variable with the specified index. |
| isCanceled | abstract fun isCanceled(): Boolean Get whether the job has been canceled. |
| isDesignVariable | abstract fun isDesignVariable(which: Any): Boolean Is the specified variable a design variable? |
| isInput | abstract fun isInput(which: Any): Boolean Is the specified variable an input? |
| isRunning | abstract fun isRunning(): Boolean Get whether the job is still running. |
| waitForCompletion | abstract fun waitForCompletion() Wait for the operation to terminate. |