Uses of Interface
org.camunda.bpm.engine.runtime.Job
Packages that use Job
Package
Description
Public API of the Camunda Platform engine.
Typical usage of the API starts by the creation of a
Through the services obtained from such a
Typical usage of the API starts by the creation of a
ProcessEngineConfiguration
(typically based on a configuration file), from which a ProcessEngine can be obtained.Through the services obtained from such a
ProcessEngine, BPM and workflow operation
can be executed:RepositoryService:
Manages DeploymentsRuntimeService:
For starting and searching ProcessInstancesTaskService:
Exposes operations to manage human (standalone) Tasks,
such as claiming, completing and assigning tasksIdentityService:
Used for managing Users,
Groups and the relations between themManagementService:
Exposes engine admin and maintenance operations,
which have no relation to the runtime execution of business processesHistoryService:
Exposes information about ongoing and past process instances.FormService:
Access to form data and rendered forms for starting new process instances and completing tasks.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of Job in org.camunda.bpm.engine
Methods in org.camunda.bpm.engine that return JobModifier and TypeMethodDescriptionHistoryService.cleanUpHistoryAsync()Schedules history cleanup job at batch window start time.HistoryService.cleanUpHistoryAsync(boolean immediatelyDue) Schedules history cleanup job at batch window start time.HistoryService.findHistoryCleanupJob()Deprecated.As of v.Methods in org.camunda.bpm.engine that return types with arguments of type JobModifier and TypeMethodDescriptionHistoryService.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 JobModifier and TypeMethodDescriptionHistoryServiceImpl.cleanUpHistoryAsync()HistoryServiceImpl.cleanUpHistoryAsync(boolean immediatelyDue) HistoryServiceImpl.findHistoryCleanupJob()Methods in org.camunda.bpm.engine.impl that return types with arguments of type JobModifier and TypeMethodDescriptionJobQueryImpl.executeList(CommandContext commandContext, Page page) HistoryServiceImpl.findHistoryCleanupJobs() -
Uses of Job in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd that return JobMethods in org.camunda.bpm.engine.impl.cmd that return types with arguments of type JobModifier and TypeMethodDescriptionHistoryCleanupCmd.createJobs(int[][] minuteChunks) FindHistoryCleanupJobsCmd.execute(CommandContext commandContext) HistoryCleanupCmd.getHistoryCleanupJobs()HistoryCleanupCmd.reconfigureJobs(List<Job> historyCleanupJobs, int degreeOfParallelism, int[][] minuteChunks) Method parameters in org.camunda.bpm.engine.impl.cmd with type arguments of type JobModifier and TypeMethodDescriptionHistoryCleanupCmd.reconfigureJobs(List<Job> historyCleanupJobs, int degreeOfParallelism, int[][] minuteChunks) protected booleanHistoryCleanupCmd.shouldCreateJobs(List<Job> jobs) protected booleanHistoryCleanupCmd.shouldReconfigureJobs(List<Job> jobs) protected booleanHistoryCleanupCmd.shouldSuspendJobs(List<Job> jobs) protected voidHistoryCleanupCmd.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 JobModifier and TypeMethodDescriptionDefaultHistoryEventProducer.createHistoricJobLogCreateEvt(Job job) HistoryEventProducer.createHistoricJobLogCreateEvt(Job job) Creates the history event fired when a job has been created.DefaultHistoryEventProducer.createHistoricJobLogDeleteEvt(Job job) HistoryEventProducer.createHistoricJobLogDeleteEvt(Job job) Creates the history event fired when the a job has been deleted.protected HistoryEventDefaultHistoryEventProducer.createHistoricJobLogEvt(Job job, HistoryEventType eventType) DefaultHistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception) HistoryEventProducer.createHistoricJobLogFailedEvt(Job job, Throwable exception) Creates the history event fired when the execution of a job failed.DefaultHistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job) HistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job) Creates the history event fired when the execution of a job was successful.protected voidDefaultHistoryEventProducer.initHistoricJobLogEvent(HistoricJobLogEventEntity evt, Job job, HistoryEventType eventType) protected HistoricJobLogEventEntityDefaultHistoryEventProducer.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 JobModifier and TypeClassDescriptionclassJobEntity for ever living job, which can be rescheduled and executed again.classStub of the common parts of a Job.classNOTE: instances of Messge Entity should be created viaMessageJobDeclaration.classMethods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type JobModifier and TypeMethodDescriptionJobManager.findJobsByHandlerType(String handlerType) JobManager.findJobsByQueryCriteria(JobQueryImpl jobQuery, Page page) Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type JobModifier and TypeMethodDescriptionvoidHistoricJobLogManager.fireJobCreatedEvent(Job job) voidHistoricJobLogManager.fireJobDeletedEvent(Job job) voidHistoricJobLogManager.fireJobFailedEvent(Job job, Throwable exception) voidHistoricJobLogManager.fireJobSuccessfulEvent(Job job) protected booleanHistoricJobLogManager.isHistoryEventProduced(HistoryEventType eventType, Job job)