What does the ACT_HI_JOB_LOG table column job_state_ value: 0 or 2 means??
Could you please share the doc link to read about the possible values and description for the job_state_ column??
What does the ACT_HI_JOB_LOG table column job_state_ value: 0 or 2 means??
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
@Ingo_Richtsmeier This is what I was looking for and Thanks
JobState CREATED = new JobStateImpl(0, "created");
JobState FAILED = new JobStateImpl(1, "failed");
JobState SUCCESSFUL = new JobStateImpl(2, "successful");
JobState DELETED = new JobStateImpl(3, "deleted");