Interface JobEntityManager
- All Superinterfaces:
EntityManager<JobEntity>
,JobInfoEntityManager<JobEntity>
- All Known Implementing Classes:
JobEntityManagerImpl
EntityManager
responsible for the JobEntity
class.- Author:
- Joram Barrez
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteJobsByExecutionId
(String executionId) findJobByCorrelationId
(String correlationId) Find the job with the given correlation idlong
findJobCountByQueryCriteria
(JobQueryImpl jobQuery) Same asfindJobsByQueryCriteria(JobQueryImpl)
, but only returns a count and not the instances itself.findJobsByQueryCriteria
(JobQueryImpl jobQuery) Executes aJobQueryImpl
and returns the matchingJobEntity
instances.boolean
insertJobEntity
(JobEntity jobEntity) Insert theJobEntity
, similar to insert(JobEntity), but returns a boolean in case the insert did not go through.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
-
insertJobEntity
-
findJobByCorrelationId
Find the job with the given correlation id -
findJobsByQueryCriteria
Executes aJobQueryImpl
and returns the matchingJobEntity
instances. -
findJobCountByQueryCriteria
Same asfindJobsByQueryCriteria(JobQueryImpl)
, but only returns a count and not the instances itself. -
deleteJobsByExecutionId
-