CompletedRunData
Last update: 16.07.2025public class CompletedRunData
Structure that contains information about completed runs.
Author
mbelcher
Constructors
| CompletedRunData | constructor(runIDs: Array<Int>, errorIDs: Array<Int>, errorMessages: Array<String>, variableValues: Array<Array<Any>>, endSequenceNumber: Int, nextSequenceNumber: Int) Creates a new CompletedRunData object. |
Functions
| Name | Summary |
|---|---|
| getEndSequenceNumber | public getEndSequenceNumber(): Int Gets the end sequence number. |
| getErrorIDs | public getErrorIDs(): Array<Int> Gets an array of errorIDs for each corresponding run in runIDs. |
| getErrorMessages | public getErrorMessages(): Array<String> Gets an array of error messages for each corresponding run in runIDs. |
| getNextSequenceNumber | public getNextSequenceNumber(): Int Gets the next sequence number, which can be used as the value of startSequenceNumber in the next subsequent call to getCompletedRunData. |
| getRunIDs | public getRunIDs(): Array<Int> Gets an array of the IDs of the runs that have completed. |
| getVariableValues | public getVariableValues(): Array<Array<Any>> Gets a multi-dimensional array of variable values. |