Uses of Interface
org.camunda.bpm.engine.runtime.Job
-
Packages that use Job Package Description org.camunda.bpm.engine Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of aProcessEngineConfiguration
(typically based on a configuration file), from which aProcessEngine
can be obtained.
Through the services obtained from such aProcessEngine
, BPM and workflow operation can be executed:
RepositoryService
: ManagesDeployment
s
RuntimeService
: For starting and searchingProcessInstance
s
TaskService
: Exposes operations to manage human (standalone)Task
s, such as claiming, completing and assigning tasks
IdentityService
: Used for managingUser
s,Group
s and the relations between them
ManagementService
: Exposes engine admin and maintenance operations, which have no relation to the runtime execution of business processes
HistoryService
: Exposes information about ongoing and past process instances.
FormService
: Access to form data and rendered forms for starting new process instances and completing tasks.org.camunda.bpm.engine.impl API implementation classes, which shouldn't directly be used by end-users.org.camunda.bpm.engine.impl.cmd org.camunda.bpm.engine.impl.history.producer org.camunda.bpm.engine.impl.persistence.entity org.camunda.bpm.engine.rest.dto.runtime -
-
Uses of Job in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return Job Modifier and Type Method Description Job
HistoryService. cleanUpHistoryAsync()
Schedules history cleanup job at batch window start time.Job
HistoryService. cleanUpHistoryAsync(boolean immediatelyDue)
Schedules history cleanup job at batch window start time.Job
HistoryService. findHistoryCleanupJob()
Deprecated.As of v.Methods in org.camunda.bpm.engine that return types with arguments of type Job Modifier and Type Method Description List<Job>
HistoryService. findHistoryCleanupJobs()
Finds history cleanup jobs if present. -
Uses of Job in org.camunda.bpm.engine.impl
Methods in org.camunda.bpm.engine.impl that return Job Modifier and Type Method Description Job
HistoryServiceImpl. cleanUpHistoryAsync()
Job
HistoryServiceImpl. cleanUpHistoryAsync(boolean immediatelyDue)
Job
HistoryServiceImpl. findHistoryCleanupJob()
Methods in org.camunda.bpm.engine.impl that return types with arguments of type Job Modifier and Type Method Description List<Job>
JobQueryImpl. executeList(CommandContext commandContext, Page page)
List<Job>
HistoryServiceImpl. findHistoryCleanupJobs()
-
Uses of Job in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return Job Modifier and Type Method Description Job
HistoryCleanupCmd. execute(CommandContext commandContext)
Methods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type Job Modifier and Type Method Description protected List<Job>
HistoryCleanupCmd. createJobs(int degreeOfParallelism, int[][] minuteChunks)
List<Job>
FindHistoryCleanupJobsCmd. execute(CommandContext commandContext)
protected List<Job>
HistoryCleanupCmd. getHistoryCleanupJobs()
protected List<Job>
HistoryCleanupCmd. reconfigureJobs(List<Job> historyCleanupJobs, int degreeOfParallelism, int[][] minuteChunks)
Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type Job Modifier and Type Method Description protected List<Job>
HistoryCleanupCmd. reconfigureJobs(List<Job> historyCleanupJobs, int degreeOfParallelism, int[][] minuteChunks)
protected boolean
HistoryCleanupCmd. shouldCreateJobs(List<Job> jobs)
protected boolean
HistoryCleanupCmd. shouldReconfigureJobs(List<Job> jobs)
protected boolean
HistoryCleanupCmd. shouldSuspendJobs(List<Job> jobs)
protected void
HistoryCleanupCmd. suspendJobs(List<Job> jobs)
-
Uses of Job in org.camunda.bpm.engine.impl.history.producer
Methods in org.camunda.bpm.engine.impl.history.producer with parameters of type Job Modifier and Type Method Description HistoryEvent
DefaultHistoryEventProducer. createHistoricJobLogCreateEvt(Job job)
HistoryEvent
HistoryEventProducer. createHistoricJobLogCreateEvt(Job job)
Creates the history event fired when a job has been created.HistoryEvent
DefaultHistoryEventProducer. createHistoricJobLogDeleteEvt(Job job)
HistoryEvent
HistoryEventProducer. createHistoricJobLogDeleteEvt(Job job)
Creates the history event fired when the a job has been deleted.protected HistoryEvent
DefaultHistoryEventProducer. createHistoricJobLogEvt(Job job, HistoryEventType eventType)
HistoryEvent
DefaultHistoryEventProducer. createHistoricJobLogFailedEvt(Job job, Throwable exception)
HistoryEvent
HistoryEventProducer. createHistoricJobLogFailedEvt(Job job, Throwable exception)
Creates the history event fired when the execution of a job failed.HistoryEvent
DefaultHistoryEventProducer. createHistoricJobLogSuccessfulEvt(Job job)
HistoryEvent
HistoryEventProducer. createHistoricJobLogSuccessfulEvt(Job job)
Creates the history event fired when the execution of a job was successful.protected void
DefaultHistoryEventProducer. initHistoricJobLogEvent(HistoricJobLogEventEntity evt, Job job, HistoryEventType eventType)
protected HistoricJobLogEventEntity
DefaultHistoryEventProducer. newHistoricJobLogEntity(Job job)
-
Uses of Job in org.camunda.bpm.engine.impl.persistence.entity
Classes in org.camunda.bpm.engine.impl.persistence.entity that implement Job Modifier and Type Class Description class
EverLivingJobEntity
JobEntity for ever living job, which can be rescheduled and executed again.class
JobEntity
Stub of the common parts of a Job.class
MessageEntity
NOTE: instances of Messge Entity should be created viaMessageJobDeclaration
.class
TimerEntity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Job Modifier and Type Method Description List<Job>
JobManager. findJobsByHandlerType(String handlerType)
List<Job>
JobManager. findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page)
Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type Job Modifier and Type Method Description void
HistoricJobLogManager. fireJobCreatedEvent(Job job)
void
HistoricJobLogManager. fireJobDeletedEvent(Job job)
void
HistoricJobLogManager. fireJobFailedEvent(Job job, Throwable exception)
void
HistoricJobLogManager. fireJobSuccessfulEvent(Job job)
protected boolean
HistoricJobLogManager. isHistoryEventProduced(HistoryEventType eventType, Job job)
-
Uses of Job in org.camunda.bpm.engine.rest.dto.runtime
Methods in org.camunda.bpm.engine.rest.dto.runtime with parameters of type Job Modifier and Type Method Description static JobDto
JobDto. fromJob(Job job)
-