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 JobEntitycurrentJobthe currently executed jobprotected List<String>currentProcessorJobQueueprotected DbEntityCacheentityCachereusable cache
-
Constructor Summary
Constructors Constructor Description JobExecutorContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JobEntitygetCurrentJob()List<String>getCurrentProcessorJobQueue()DbEntityCachegetEntityCache()booleanisExecutingExclusiveJob()voidsetCurrentJob(JobEntity currentJob)voidsetEntityCache(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)
-
-