CompletedRunData
Last update: 16.07.2025constructor(runIDs: Array<Int>, errorIDs: Array<Int>, errorMessages: Array<String>, variableValues: Array<Array<Any>>, endSequenceNumber: Int, nextSequenceNumber: Int)
Creates a new CompletedRunData object.
Parameters
| runIDs | an array of runIDs that have completed. |
| errorIDs | an array of errorIDs for each corresponding run in runIDs. A value of 0 indicates success, all other values indicate failure. |
| errorMessages | An array of error messages for each corresponding run in runIDs. |
| variableValues | A multi-dimensional array of variable values. The first index corresponds to each run in runIDs, the second index is for each variable in that run. |
| endSequenceNumber | the index of the last available completed run. |
| nextSequenceNumber | use this as the value of startSequenceNumber in the next subsequent call to getCompletedRunData. This value may be greater than (startSequenceNumber + runs) if a given run completed multiple times due to re-runs. |