Interface DeadLetterJobEntityManager
-
- All Superinterfaces:
EntityManager<DeadLetterJobEntity>
- All Known Implementing Classes:
DeadLetterJobEntityManagerImpl
public interface DeadLetterJobEntityManager extends EntityManager<DeadLetterJobEntity>
- Author:
- Tijs Rademakers
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DeadLetterJobEntityfindJobByCorrelationId(String correlationId)Find the deadletter job with the given correlation id.longfindJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl), but only returns a count and not the instances itself.List<DeadLetterJobEntity>findJobsByExecutionId(String id)Returns allDeadLetterJobEntityinstances related to an execution id.List<DeadLetterJobEntity>findJobsByProcessInstanceId(String id)Returns allDeadLetterJobEntityinstances related to a process instanceList<Job>findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery)Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.voidupdateJobTenantIdForDeployment(String deploymentId, String newTenantId)Changes the tenantId for all jobs related to a given deployment id.
-
-
-
Method Detail
-
findJobByCorrelationId
DeadLetterJobEntity findJobByCorrelationId(String correlationId)
Find the deadletter job with the given correlation id.
-
findJobsByExecutionId
List<DeadLetterJobEntity> findJobsByExecutionId(String id)
Returns allDeadLetterJobEntityinstances related to an execution id.
-
findJobsByProcessInstanceId
List<DeadLetterJobEntity> findJobsByProcessInstanceId(String id)
Returns allDeadLetterJobEntityinstances related to a process instance
-
findJobsByQueryCriteria
List<Job> findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
Executes aJobQueryImpland returns the matchingDeadLetterJobEntityinstances.
-
findJobCountByQueryCriteria
long findJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl), but only returns a count and not the instances itself.
-
-