Interface DeadLetterJobEntityManager
- All Superinterfaces:
EntityManager<DeadLetterJobEntity>
- All Known Implementing Classes:
DeadLetterJobEntityManagerImpl
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptionfindJobByCorrelationId
(String correlationId) Find the deadletter job with the given correlation id.long
Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl)
, but only returns a count and not the instances itself.Returns allDeadLetterJobEntity
instances related to an execution id.Returns allDeadLetterJobEntity
instances related to a process instanceExecutes aJobQueryImpl
and returns the matchingDeadLetterJobEntity
instances.void
updateJobTenantIdForDeployment
(String deploymentId, String newTenantId) Changes the tenantId for all jobs related to a given deployment id.
-
Method Details
-
findJobByCorrelationId
Find the deadletter job with the given correlation id. -
findJobsByExecutionId
Returns allDeadLetterJobEntity
instances related to an execution id. -
findJobsByProcessInstanceId
Returns allDeadLetterJobEntity
instances related to a process instance -
findJobsByQueryCriteria
Executes aJobQueryImpl
and returns the matchingDeadLetterJobEntity
instances. -
findJobCountByQueryCriteria
Same asfindJobsByQueryCriteria(DeadLetterJobQueryImpl)
, but only returns a count and not the instances itself. -
updateJobTenantIdForDeployment
Changes the tenantId for all jobs related to a given deployment id.
-