Uses of Interface
org.flowable.job.service.impl.persistence.entity.HistoryJobEntity
Packages that use HistoryJobEntity
Package
Description
-
Uses of HistoryJobEntity in org.flowable.job.service
Methods in org.flowable.job.service that return HistoryJobEntityModifier and TypeMethodDescriptionHistoryJobService.createHistoryJob()
HistoryJobProcessorContext.getHistoryJobEntity()
Get the history job entity.Methods in org.flowable.job.service with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionvoid
HistoryJobService.deleteHistoryJob
(HistoryJobEntity historyJob) void
HistoryJobHandler.execute
(HistoryJobEntity job, String configuration, CommandContext commandContext, JobServiceConfiguration jobServiceConfiguration) void
HistoryJobService.scheduleHistoryJob
(HistoryJobEntity historyJob) -
Uses of HistoryJobEntity in org.flowable.job.service.impl
Fields in org.flowable.job.service.impl declared as HistoryJobEntityModifier and TypeFieldDescriptionprotected final HistoryJobEntity
HistoryJobProcessorContextImpl.historyJobEntity
Methods in org.flowable.job.service.impl that return HistoryJobEntityModifier and TypeMethodDescriptionHistoryJobServiceImpl.createHistoryJob()
HistoryJobProcessorContextImpl.getHistoryJobEntity()
Methods in org.flowable.job.service.impl with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionvoid
HistoryJobServiceImpl.deleteHistoryJob
(HistoryJobEntity historyJob) void
HistoryJobServiceImpl.scheduleHistoryJob
(HistoryJobEntity historyJob) Constructors in org.flowable.job.service.impl with parameters of type HistoryJobEntityModifierConstructorDescriptionHistoryJobProcessorContextImpl
(HistoryJobProcessorContext.Phase phase, HistoryJobEntity historyJobEntity) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.asyncexecutor
Fields in org.flowable.job.service.impl.asyncexecutor with type parameters of type HistoryJobEntityModifier and TypeFieldDescriptionprotected Map<String,
HistoryJobEntity> AcquiredHistoryJobEntities.acquiredJobs
Methods in org.flowable.job.service.impl.asyncexecutor that return HistoryJobEntityModifier and TypeMethodDescriptionprotected HistoryJobEntity
DefaultJobManager.copyHistoryJobInfo
(HistoryJobEntity copyToJob, HistoryJobEntity copyFromJob) DefaultJobManager.moveDeadLetterJobToHistoryJob
(DeadLetterJobEntity deadLetterJobEntity, int retries) JobManager.moveDeadLetterJobToHistoryJob
(DeadLetterJobEntity deadLetterJobEntity, int retries) Transforms aDeadLetterJobEntity
to aHistoryJob
, thus making it executable again (by the async history executor).DefaultJobManager.scheduleHistoryJob
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) JobManager.scheduleHistoryJob
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) schedules aHistoryJobEntity
, meaning it will be scheduled (inserted in the database/put on a queue/...) to be executed at a later point in time.Methods in org.flowable.job.service.impl.asyncexecutor that return types with arguments of type HistoryJobEntityMethods in org.flowable.job.service.impl.asyncexecutor with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionvoid
AcquiredHistoryJobEntities.addJob
(HistoryJobEntity job) protected void
DefaultJobManager.callHistoryJobProcessors
(HistoryJobProcessorContext.Phase processorType, HistoryJobEntity historyJobEntity) protected HistoryJobEntity
DefaultJobManager.copyHistoryJobInfo
(HistoryJobEntity copyToJob, HistoryJobEntity copyFromJob) protected void
DefaultJobManager.createAsyncHistoryHintListeners
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) DefaultJobManager.createDeadLetterJobFromHistoryJob
(HistoryJobEntity historyJobEntity) JobManager.createDeadLetterJobFromHistoryJob
(HistoryJobEntity historyJobEntity) Create a dead letter job from a history job.protected void
DefaultJobManager.executeHistoryJob
(HistoryJobEntity historyJobEntity) protected void
DefaultJobManager.executeHistoryJobHandler
(HistoryJobEntity historyJobEntity) protected void
DefaultJobManager.hintAsyncHistoryExecutor
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) DefaultJobManager.scheduleHistoryJob
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) JobManager.scheduleHistoryJob
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) schedules aHistoryJobEntity
, meaning it will be scheduled (inserted in the database/put on a queue/...) to be executed at a later point in time.protected void
DefaultJobManager.triggerAsyncHistoryExecutorIfNeeded
(HistoryJobEntity historyJobEntity, TransactionContext transactionContext) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.cmd
Methods in org.flowable.job.service.impl.cmd that return HistoryJobEntityModifier and TypeMethodDescriptionprotected HistoryJobEntity
DeleteHistoryJobCmd.getJobToDelete
(CommandContext commandContext) Methods in org.flowable.job.service.impl.cmd with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionprotected void
DeleteHistoryJobCmd.sendCancelEvent
(HistoryJobEntity jobToDelete) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.history.async
Fields in org.flowable.job.service.impl.history.async declared as HistoryJobEntityModifier and TypeFieldDescriptionprotected HistoryJobEntity
TriggerAsyncHistoryExecutorTransactionListener.historyJobEntity
Constructors in org.flowable.job.service.impl.history.async with parameters of type HistoryJobEntityModifierConstructorDescriptionTriggerAsyncHistoryExecutorTransactionListener
(JobServiceConfiguration jobServiceConfiguration, HistoryJobEntity historyJobEntity) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.persistence.entity
Classes in org.flowable.job.service.impl.persistence.entity that implement HistoryJobEntityMethods in org.flowable.job.service.impl.persistence.entity with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionvoid
HistoryJobEntityManagerImpl.delete
(HistoryJobEntity jobEntity) void
HistoryJobEntityManager.deleteNoCascade
(HistoryJobEntity historyJobEntity) The default delete method will cascade to the references entities.void
HistoryJobEntityManagerImpl.deleteNoCascade
(HistoryJobEntity historyJobEntity) protected boolean
HistoryJobEntityManagerImpl.doInsert
(HistoryJobEntity jobEntity, boolean fireCreateEvent) void
HistoryJobEntityManagerImpl.insert
(HistoryJobEntity jobEntity, boolean fireCreateEvent) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.persistence.entity.data.impl
Methods in org.flowable.job.service.impl.persistence.entity.data.impl that return HistoryJobEntityMethods in org.flowable.job.service.impl.persistence.entity.data.impl that return types with arguments of type HistoryJobEntityModifier and TypeMethodDescriptionMybatisHistoryJobDataManager.findExpiredJobs
(List<String> enabledCategories, Page page) MybatisHistoryJobDataManager.findJobsByExecutionId
(String executionId) MybatisHistoryJobDataManager.findJobsByProcessInstanceId
(String processInstanceId) MybatisHistoryJobDataManager.findJobsToExecute
(List<String> enabledCategories, Page page) Class<? extends HistoryJobEntity>
MybatisHistoryJobDataManager.getManagedEntityClass()
Method parameters in org.flowable.job.service.impl.persistence.entity.data.impl with type arguments of type HistoryJobEntityModifier and TypeMethodDescriptionvoid
MybatisHistoryJobDataManager.bulkUpdateJobLockWithoutRevisionCheck
(List<HistoryJobEntity> historyJobs, String lockOwner, Date lockExpirationTime) -
Uses of HistoryJobEntity in org.flowable.job.service.impl.util
Methods in org.flowable.job.service.impl.util with parameters of type HistoryJobEntityModifier and TypeMethodDescriptionstatic void
JobProcessorUtil.callHistoryJobProcessors
(JobServiceConfiguration jobServiceConfiguration, HistoryJobProcessorContext.Phase processorType, HistoryJobEntity historyJobEntity)