JobStatus
Each API call returns a JobStatus
to indicate, whether the job completed execution successfully or aborted due to any reason.
Enumeration definition
enum JobStatus {
SUCCEEDED = 0;
FAULTED = 1;
CANCELLED = 2;
}
Enumeration values
SUCCEEDED
-
The job finished successfully.
Anyway, the job might have generated processing errors as outlined in the API call documentation.
FAULTED
-
The job has been aborted due to an unexpected exception. This is not an expected behaviour.
CANCELLED
- The job has been cancelled. Typically because the client cancelled the request or the deadline exceeded.