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.List<DeadLetterJobEntity>findJobsByExecutionId(String id)Returns allDeadLetterJobEntityinstances related to onExecutionEntity.List<Job>findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery, Page page)Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.voidupdateJobTenantIdForDeployment(String deploymentId, String newTenantId)Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-
-
Method Detail
-
findJobsByExecutionId
List<DeadLetterJobEntity> findJobsByExecutionId(String id)
Returns allDeadLetterJobEntityinstances related to onExecutionEntity.
-
findJobsByQueryCriteria
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(String deploymentId, String newTenantId)
Changes the tenantId for all jobs related to a givenDeploymentEntity.
-
-