In ACT_HI_JOB_LOG table column job_state_ value: 0 or 2 means?

What does the ACT_HI_JOB_LOG table column job_state_ value: 0 or 2 means??

https://docs.camunda.org/javadoc/camunda-bpm-platform/7.5/org/camunda/bpm/engine/impl/history/event/HistoricJobLogEvent.html#setState(int)

Could you please share the doc link to read about the possible values and description for the job_state_ column??

Hi @aravindhrs,

I think that the truth is defined here: camunda-bpm-platform/JobState.java at master · camunda/camunda-bpm-platform · GitHub.

Hope this helps, Ingo

1 Like

@Ingo_Richtsmeier This is what I was looking for and Thanks :slight_smile:

  JobState CREATED = new JobStateImpl(0, "created");
  JobState FAILED = new JobStateImpl(1, "failed");
  JobState SUCCESSFUL = new JobStateImpl(2, "successful");
  JobState DELETED = new JobStateImpl(3, "deleted");
1 Like