Interface DeadLetterJobEntityManager
-
- All Superinterfaces:
EntityManager<DeadLetterJobEntity>
- All Known Implementing Classes:
DeadLetterJobEntityManagerImpl
@Internal public interface DeadLetterJobEntityManager extends EntityManager<DeadLetterJobEntity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longfindJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl, Page), but only returns a count and not the instances itself.java.util.List<DeadLetterJobEntity>findJobsByExecutionId(java.lang.String id)Returns allDeadLetterJobEntityinstances related to onExecutionEntity.java.util.List<Job>findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.voidupdateJobTenantIdForDeployment(java.lang.String deploymentId, java.lang.String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-
-
Method Detail
-
findJobsByExecutionId
java.util.List<DeadLetterJobEntity> findJobsByExecutionId(java.lang.String id)
Returns allDeadLetterJobEntityinstances related to onExecutionEntity.
-
findJobsByQueryCriteria
java.util.List<Job> findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)
Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.
-
findJobCountByQueryCriteria
long findJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl, Page), but only returns a count and not the instances itself.
-
updateJobTenantIdForDeployment
void updateJobTenantIdForDeployment(java.lang.String deploymentId, java.lang.String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-