Class JobExecutorContext
- java.lang.Object
-
- org.camunda.bpm.engine.impl.jobexecutor.JobExecutorContext
-
public class JobExecutorContext extends Object
- Author:
- Daniel Meyer
-
-
Field Summary
Fields Modifier and Type Field Description protected JobEntity
currentJob
the currently executed jobprotected List<String>
currentProcessorJobQueue
protected DbEntityCache
entityCache
reusable cache
-
Constructor Summary
Constructors Constructor Description JobExecutorContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JobEntity
getCurrentJob()
List<String>
getCurrentProcessorJobQueue()
DbEntityCache
getEntityCache()
boolean
isExecutingExclusiveJob()
void
setCurrentJob(JobEntity currentJob)
void
setEntityCache(DbEntityCache entityCache)
-
-
-
Field Detail
-
currentJob
protected JobEntity currentJob
the currently executed job
-
entityCache
protected DbEntityCache entityCache
reusable cache
-
-
Method Detail
-
isExecutingExclusiveJob
public boolean isExecutingExclusiveJob()
-
setCurrentJob
public void setCurrentJob(JobEntity currentJob)
-
getCurrentJob
public JobEntity getCurrentJob()
-
getEntityCache
public DbEntityCache getEntityCache()
-
setEntityCache
public void setEntityCache(DbEntityCache entityCache)
-
-