Uses of Interface
org.operaton.bpm.engine.runtime.Job
Packages that use Job
Package
Description
Public API of the Operaton engine.
Typical usage of the API starts by the creation of 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.API implementation classes, which shouldn't directly be used by end-users.
-
Uses of Job in org.operaton.bpm.engine
Methods in org.operaton.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, for removal: This API element is subject to removal in a future version.There can be more than one history cleanup job at once.Methods in org.operaton.bpm.engine that return types with arguments of type JobModifier and TypeMethodDescriptionHistoryService.findHistoryCleanupJobs()Finds history cleanup jobs if present. -
Uses of Job in org.operaton.bpm.engine.impl
Methods in org.operaton.bpm.engine.impl that return JobModifier and TypeMethodDescriptionHistoryServiceImpl.cleanUpHistoryAsync()HistoryServiceImpl.cleanUpHistoryAsync(boolean immediatelyDue) HistoryServiceImpl.findHistoryCleanupJob()Methods in org.operaton.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.operaton.bpm.engine.impl.cmd
Methods in org.operaton.bpm.engine.impl.cmd that return JobMethods in org.operaton.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.operaton.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.operaton.bpm.engine.impl.history.producer
Methods in org.operaton.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.operaton.bpm.engine.impl.persistence.entity
Classes in org.operaton.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 Message Entity should be created viaMessageJobDeclaration.classMethods in org.operaton.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.operaton.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) -
Uses of Job in org.operaton.bpm.engine.rest.dto.runtime
Methods in org.operaton.bpm.engine.rest.dto.runtime with parameters of type Job -
Uses of Job in org.operaton.bpm.engine.test.api.runtime
Methods in org.operaton.bpm.engine.test.api.runtime that return JobModifier and TypeMethodDescriptionBatchHelper.getJobForDefinition(JobDefinition jobDefinition) BatchHelper.getMonitorJob(Batch batch) BatchHelper.getSeedJob(Batch batch) Methods in org.operaton.bpm.engine.test.api.runtime that return types with arguments of type JobModifier and TypeMethodDescriptionBatchHelper.getExecutionJobs(Batch batch) BatchHelper.getExecutionJobs(Batch batch, String jobType) BatchHelper.getJobsForDefinition(JobDefinition jobDefinition) Methods in org.operaton.bpm.engine.test.api.runtime with parameters of type JobModifier and TypeMethodDescriptionvoidBatchHelper.executeJob(Job job) BatchHelper.getHistoricMonitorJobLog(Batch batch, Job monitorJob) -
Uses of Job in org.operaton.bpm.engine.test.api.runtime.migration
Fields in org.operaton.bpm.engine.test.api.runtime.migration with type parameters of type JobMethods in org.operaton.bpm.engine.test.api.runtime.migration that return JobModifier and TypeMethodDescriptionMigrationTestRule.assertTimerJobExists(ProcessInstanceSnapshot snapshot) ProcessInstanceSnapshot.getJobById(String jobId) ProcessInstanceSnapshot.getJobForDefinitionId(String jobDefinitionId) Methods in org.operaton.bpm.engine.test.api.runtime.migration that return types with arguments of type JobMethods in org.operaton.bpm.engine.test.api.runtime.migration with parameters of type JobModifier and TypeMethodDescriptionvoidMigrationTestRule.assertJobMigrated(Job jobBefore, String activityIdAfter) voidMigrationTestRule.assertJobMigrated(Job jobBefore, String activityIdAfter, Date dueDateAfter) voidMigrationTestRule.assertTimerJob(Job job) Method parameters in org.operaton.bpm.engine.test.api.runtime.migration with type arguments of type Job -
Uses of Job in org.operaton.bpm.engine.test.assertions.bpmn
Methods in org.operaton.bpm.engine.test.assertions.bpmn that return JobModifier and TypeMethodDescriptionprotected JobJobAssert.getCurrent()static JobBpmnAwareTests.job()Helper method to easily access the only job currently available in the context of the last asserted process instance.static JobHelper method to easily access the only job with the given activityId currently available in the context of the last asserted process instance.static JobBpmnAwareTests.job(String activityId, ProcessInstance processInstance) Helper method to easily access the only job with the given activityId currently available in the context of the given process instance.static JobHelper method to easily access the only job compliant to a given jobQuery and currently available in the context of the last asserted process instance.static JobBpmnAwareTests.job(JobQuery jobQuery, ProcessInstance processInstance) Helper method to easily access the only job compliant to a given jobQuery and currently available in the context of the given process instance.static JobBpmnAwareTests.job(ProcessInstance processInstance) Helper method to easily access the only job currently available in the context of the given process instance.Methods in org.operaton.bpm.engine.test.assertions.bpmn with parameters of type JobModifier and TypeMethodDescriptionstatic JobAssertBpmnAwareTests.assertThat(Job actual) Assert that... the given Job meets your expectations.protected static JobAssertJobAssert.assertThat(ProcessEngine engine, Job actual) static voidHelper method to easily execute a job.protected StringConstructors in org.operaton.bpm.engine.test.assertions.bpmn with parameters of type Job -
Uses of Job in org.operaton.bpm.engine.test.junit5
Methods in org.operaton.bpm.engine.test.junit5 that return types with arguments of type Job -
Uses of Job in org.operaton.bpm.engine.test.junit5.batch
Methods in org.operaton.bpm.engine.test.junit5.batch that return JobModifier and TypeMethodDescriptionprotected JobBatchExtension.getJobForDefinition(String definitionId) BatchExtension.getSeedJob(Batch batch) Methods in org.operaton.bpm.engine.test.junit5.batch that return types with arguments of type JobModifier and TypeMethodDescriptionBatchExtension.executeSeedJobs(Batch batch) BatchExtension.executeSeedJobs(Batch batch, boolean cleanUp) BatchExtension.getExecutionJobs(Batch batch) -
Uses of Job in org.operaton.bpm.engine.test.junit5.migration
Methods in org.operaton.bpm.engine.test.junit5.migration that return JobModifier and TypeMethodDescriptionMigrationTestExtension.assertTimerJobExists(ProcessInstanceSnapshot snapshot) Methods in org.operaton.bpm.engine.test.junit5.migration with parameters of type JobModifier and TypeMethodDescriptionvoidMigrationTestExtension.assertJobMigrated(Job jobBefore, String activityIdAfter) voidMigrationTestExtension.assertJobMigrated(Job jobBefore, String activityIdAfter, Date dueDateAfter) voidMigrationTestExtension.assertTimerJob(Job job) -
Uses of Job in org.operaton.bpm.engine.test.util
Methods in org.operaton.bpm.engine.test.util that return JobModifier and TypeMethodDescriptionprotected JobBatchRule.getJobForDefinition(String definitionId) BatchRule.getSeedJob(Batch batch) Methods in org.operaton.bpm.engine.test.util that return types with arguments of type JobModifier and TypeMethodDescriptionBatchRule.executeSeedJobs(Batch batch) BatchRule.executeSeedJobs(Batch batch, boolean cleanUp) BatchRule.getExecutionJobs(Batch batch)