Interface HistoryJobEntityManager
-
- All Superinterfaces:
EntityManager<HistoryJobEntity>,JobInfoEntityManager<HistoryJobEntity>
- All Known Implementing Classes:
HistoryJobEntityManagerImpl
public interface HistoryJobEntityManager extends EntityManager<HistoryJobEntity>, JobInfoEntityManager<HistoryJobEntity>
EntityManagerresponsible for theHistoryJobEntityclass.- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voiddeleteNoCascade(HistoryJobEntity historyJobEntity)The default delete method will cascade to the references entities.longfindHistoryJobCountByQueryCriteria(HistoryJobQueryImpl jobQuery)Same asfindHistoryJobsByQueryCriteria(HistoryJobQueryImpl), but only returns a count and not the instances itself.List<HistoryJob>findHistoryJobsByQueryCriteria(HistoryJobQueryImpl jobQuery)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, update
-
Methods inherited from interface org.flowable.job.service.impl.persistence.entity.JobInfoEntityManager
bulkUpdateJobLockWithoutRevisionCheck, findExpiredJobs, findJobsByExecutionId, findJobsByProcessInstanceId, findJobsToExecute, findJobsToExecuteAndLockInBulk, resetExpiredJob, updateJobTenantIdForDeployment
-
-
-
-
Method Detail
-
findHistoryJobsByQueryCriteria
List<HistoryJob> findHistoryJobsByQueryCriteria(HistoryJobQueryImpl jobQuery)
Executes aHistoryJobQueryImpland returns the matchingHistoryJobEntityinstances.
-
findHistoryJobCountByQueryCriteria
long findHistoryJobCountByQueryCriteria(HistoryJobQueryImpl jobQuery)
Same asfindHistoryJobsByQueryCriteria(HistoryJobQueryImpl), but only returns a count and not the instances itself.
-
deleteNoCascade
void deleteNoCascade(HistoryJobEntity historyJobEntity)
The default delete method will cascade to the references entities. This delete doesn't delete the referenced byte array entities (configuration and exception).
-
-