Interface HistoryJobEntityManager
- All Superinterfaces:
EntityManager<HistoryJobEntity>
,JobInfoEntityManager<HistoryJobEntity>
- All Known Implementing Classes:
HistoryJobEntityManagerImpl
public interface HistoryJobEntityManager
extends EntityManager<HistoryJobEntity>, JobInfoEntityManager<HistoryJobEntity>
EntityManager
responsible for the HistoryJobEntity
class.- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteNoCascade
(HistoryJobEntity historyJobEntity) The default delete method will cascade to the references entities.long
Same asfindHistoryJobsByQueryCriteria(HistoryJobQueryImpl)
, but only returns a count and not the instances itself.Executes aHistoryJobQueryImpl
and returns the matchingHistoryJobEntity
instances.Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.EntityManager
create, delete, delete, delete, findById, insert, insert, update, update
Methods inherited from interface org.flowable.job.service.impl.persistence.entity.JobInfoEntityManager
bulkUpdateJobLockWithoutRevisionCheck, findExpiredJobs, findJobsByExecutionId, findJobsByProcessInstanceId, findJobsToExecute, findJobsToExecuteAndLockInBulk, resetExpiredJob, updateJobTenantIdForDeployment
-
Method Details
-
findHistoryJobsByQueryCriteria
Executes aHistoryJobQueryImpl
and returns the matchingHistoryJobEntity
instances. -
findHistoryJobCountByQueryCriteria
Same asfindHistoryJobsByQueryCriteria(HistoryJobQueryImpl)
, but only returns a count and not the instances itself. -
deleteNoCascade
The default delete method will cascade to the references entities. This delete doesn't delete the referenced byte array entities (configuration and exception).
-