Job Status
//indico-client-java/com.indico.type/JobStatus
JobStatus
[jvm]
enum JobStatus : Enum<JobStatus>
Entries
FAILURE | [jvm] FAILURE Job has failed |
IGNORED | [jvm] IGNORED Ignored. |
PENDING | [jvm] PENDING Job status not yet known. |
RECEIVED | [jvm] RECEIVED Event only - Worker received the job. |
REJECTED | [jvm] REJECTED Events only - Job was rejected. |
RETRY | [jvm] RETRY Job is being retried. |
REVOKED | [jvm] REVOKED Job was revoked. |
STARTED | [jvm] STARTED Worker has started the task. |
SUCCESS | [jvm] SUCCESS Job was successful. |
TRAILED | [jvm] TRAILED |
Properties
Name | Summary |
---|---|
entries | [jvm] val entries: EnumEntries<JobStatus> Returns a representation of an immutable list of all enum entries, in the order they're declared. |
name | [jvm] val name: String |
ordinal | [jvm] val ordinal: Int |
Functions
Name | Summary |
---|---|
valueOf | [jvm] fun valueOf(value: String): JobStatus Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.) |
values | [jvm] fun values(): Array<JobStatus> Returns an array containing the constants of this enum type, in the order they're declared. |
Updated 10 months ago