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 TypeMethodDescriptionvoiddeleteNoCascade(HistoryJobEntity historyJobEntity) The default delete method will cascade to the references entities.longSame asfindHistoryJobsByQueryCriteria(HistoryJobQueryImpl), but only returns a count and not the instances itself.Executes aHistoryJobQueryImpland returns the matchingHistoryJobEntityinstances.Methods inherited from interface org.flowable.common.engine.impl.persistence.entity.EntityManager
create, delete, delete, delete, findById, insert, insert, update, updateMethods inherited from interface org.flowable.job.service.impl.persistence.entity.JobInfoEntityManager
bulkUpdateJobLockWithoutRevisionCheck, findExpiredJobs, findJobsByExecutionId, findJobsByProcessInstanceId, findJobsToExecute, findJobsToExecuteAndLockInBulk, resetExpiredJob, updateJobTenantIdForDeployment
-
Method Details
-
findHistoryJobsByQueryCriteria
Executes aHistoryJobQueryImpland returns the matchingHistoryJobEntityinstances. -
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).
-