The data execution status.
Methods
Method | Return type | Brief description |
---|---|---|
getErrorCode() | DataExecutionErrorCode | Gets the error code of the data execution. |
getErrorMessage() | String | Gets the error message of the data execution. |
getExecutionState() | DataExecutionState | Gets the state of the data execution. |
getLastExecutionTime() | Date | Gets the time the last data execution completed regardless of the execution state. |
getLastRefreshedTime() | Date | Gets the time the data last successfully refreshed. |
isTruncated() | Boolean | Returns true if the data from last successful execution is truncated, or false
otherwise. |
Detailed documentation
getErrorCode()
getErrorMessage()
Gets the error message of the data execution. The message may be empty.
Return
String
— The error message.
getExecutionState()
getLastExecutionTime()
Gets the time the last data execution completed regardless of the execution state.
Return
Date
— The last execution time, or null
if there has never been a data execution.
getLastRefreshedTime()
Gets the time the data last successfully refreshed.
Return
Date
— The last successfully refreshed time, or null
if there is never a successful
data execution.
isTruncated()
Returns true
if the data from last successful execution is truncated, or false
otherwise.
Return
Boolean
— True
if the data from execution is truncated, or false
otherwise.