Method: OodCore::Job::Status.states

Defined in:
lib/ood_core/job/status.rb

.statesObject

Possible states a submitted job can be in:

# Job status cannot be determined
:undetermined

# Job is queued for being scheduled and executed
:queued

# Job has been placed on hold by the system, the administrator, or
# submitting user
:queued_held

# Job is running on an execution host
:running

# Job has been suspended by the user, the system, or the administrator
:suspended

# Job is completed and not running on an execution host
:completed

@note that this list's order is meaningful and should not be sorted lexigraphically


27
28
29
30
31
32
33
34
35
36
# File 'lib/ood_core/job/status.rb', line 27

def states
  i(
    undetermined
    completed
    queued_held
    queued
    running
    suspended
  )
end