Package org.camunda.bpm.engine.runtime
Interface Job
- All Known Implementing Classes:
EverLivingJobEntity
,JobEntity
,MessageEntity
,TimerEntity
public interface Job
Represents one job (timer, message, etc.).
- Author:
- Joram Barrez, Daniel Meyer
-
Method Summary
Modifier and TypeMethodDescriptionThe ID of the batch associated with this job.The date/time when this job has been createdReturns the id of the deployment in which context the job was created.Returns the date on which this job is supposed to be processed.Returns the message of the exception that occurred, the last time the job was executed.Returns the specific execution on which the job was created.Returns the id of the activity on which the last exception occurred.getId()
Returns the unique identifier for this job.The id of theJobDefinition
for this job.long
The job's priority that is a hint to job acquisition.Returns the id of the process definition which created the job.Returns the key of the process definition which created the job.Returns the id of the process instance which execution created the job.int
Returns the number of retries this job has left.Returns the id of the root process instance which execution created the job.The id of the tenant this job belongs to.boolean
Indicates whether this job is suspended.
-
Method Details
-
getId
String getId()Returns the unique identifier for this job. -
getDuedate
Date getDuedate()Returns the date on which this job is supposed to be processed. -
getRootProcessInstanceId
String getRootProcessInstanceId()Returns the id of the root process instance which execution created the job. -
getProcessInstanceId
String getProcessInstanceId()Returns the id of the process instance which execution created the job. -
getProcessDefinitionId
String getProcessDefinitionId()Returns the id of the process definition which created the job. -
getProcessDefinitionKey
String getProcessDefinitionKey()Returns the key of the process definition which created the job. -
getExecutionId
String getExecutionId()Returns the specific execution on which the job was created. -
getRetries
int getRetries()Returns the number of retries this job has left. Whenever the jobexecutor fails to execute the job, this value is decremented. When it hits zero, the job is supposed to be dead and not retried again (ie a manual retry is required then). -
getExceptionMessage
String getExceptionMessage()Returns the message of the exception that occurred, the last time the job was executed. Returns null when no exception occurred. To get the full exception stacktrace, useManagementService.getJobExceptionStacktrace(String)
-
getFailedActivityId
String getFailedActivityId()Returns the id of the activity on which the last exception occurred. -
getDeploymentId
String getDeploymentId()Returns the id of the deployment in which context the job was created. -
getJobDefinitionId
String getJobDefinitionId()The id of theJobDefinition
for this job. -
isSuspended
boolean isSuspended()Indicates whether this job is suspended. If a job is suspended, the job will be not acquired by the job executor.- Returns:
- true if this Job is currently suspended.
-
getPriority
long getPriority()The job's priority that is a hint to job acquisition.- Since:
- 7.4
-
getTenantId
String getTenantId()The id of the tenant this job belongs to. Can benull
if the job belongs to no single tenant. -
getCreateTime
Date getCreateTime()The date/time when this job has been created -
getBatchId
String getBatchId()The ID of the batch associated with this job.null
if no batch is associated with this job. The following jobs are associated with batches:- Seed Jobs
- Monitor Jobs
- Batch Execution Jobs
- Returns:
- The ID of the batch associated to the Job.
-