|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Job | |
|---|---|
| org.camunda.bpm.engine | Public API of the camunda BPM engine. 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. |
| 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 | |
| Uses of Job in org.camunda.bpm.engine |
|---|
| Methods in org.camunda.bpm.engine that return Job | |
|---|---|
Job |
HistoryService.cleanUpHistoryAsync()
Schedules history cleanup job at batch window start time. |
Job |
HistoryService.cleanUpHistoryAsync(boolean immediatelyDue)
Schedules history cleanup job. |
Job |
HistoryService.findHistoryCleanupJob()
Finds history cleanup job if present. |
| Uses of Job in org.camunda.bpm.engine.impl |
|---|
| Methods in org.camunda.bpm.engine.impl that return Job | |
|---|---|
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 | |
|---|---|
List<Job> |
JobQueryImpl.executeList(CommandContext commandContext,
Page page)
|
| Uses of Job in org.camunda.bpm.engine.impl.cmd |
|---|
| Methods in org.camunda.bpm.engine.impl.cmd that return Job | |
|---|---|
Job |
FindHistoryCleanupJobCmd.execute(CommandContext commandContext)
|
Job |
HistoryCleanupCmd.execute(CommandContext commandContext)
|
| 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 | |
|---|---|
HistoryEvent |
HistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
Creates the history event fired when a job has been created. |
HistoryEvent |
DefaultHistoryEventProducer.createHistoricJobLogCreateEvt(Job job)
|
HistoryEvent |
HistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
Creates the history event fired when the a job has been deleted. |
HistoryEvent |
DefaultHistoryEventProducer.createHistoricJobLogDeleteEvt(Job job)
|
protected HistoryEvent |
DefaultHistoryEventProducer.createHistoricJobLogEvt(Job job,
HistoryEventType eventType)
|
HistoryEvent |
HistoryEventProducer.createHistoricJobLogFailedEvt(Job job,
Throwable exception)
Creates the history event fired when the execution of a job failed. |
HistoryEvent |
DefaultHistoryEventProducer.createHistoricJobLogFailedEvt(Job job,
Throwable exception)
|
HistoryEvent |
HistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
Creates the history event fired when the execution of a job was successful. |
HistoryEvent |
DefaultHistoryEventProducer.createHistoricJobLogSuccessfulEvt(Job job)
|
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 | |
|---|---|
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 via MessageJobDeclaration. |
class |
TimerEntity
|
| Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type Job | |
|---|---|
List<Job> |
JobManager.findJobsByQueryCriteria(JobQueryImpl jobQuery,
Page page)
|
| Methods in org.camunda.bpm.engine.impl.persistence.entity with parameters of type Job | |
|---|---|
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)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||