public interface DeadLetterJobEntityManager extends EntityManager<DeadLetterJobEntity>
| Modifier and Type | Method and Description |
|---|---|
DeadLetterJobEntity |
findJobByCorrelationId(String correlationId)
Find the deadletter job with the given correlation id.
|
long |
findJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
Same as
findJobsByQueryCriteria(DeadLetterJobQueryImpl), but only returns a count and not the instances itself. |
List<DeadLetterJobEntity> |
findJobsByExecutionId(String id)
Returns all
DeadLetterJobEntity instances related to an execution id. |
List<DeadLetterJobEntity> |
findJobsByProcessInstanceId(String id)
Returns all
DeadLetterJobEntity instances related to a process instance |
List<Job> |
findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
Executes a
JobQueryImpl and returns the matching DeadLetterJobEntity instances. |
void |
updateJobTenantIdForDeployment(String deploymentId,
String newTenantId)
Changes the tenantId for all jobs related to a given deployment id.
|
DeadLetterJobEntity findJobByCorrelationId(String correlationId)
List<DeadLetterJobEntity> findJobsByExecutionId(String id)
DeadLetterJobEntity instances related to an execution id.List<DeadLetterJobEntity> findJobsByProcessInstanceId(String id)
DeadLetterJobEntity instances related to a process instanceList<Job> findJobsByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
JobQueryImpl and returns the matching DeadLetterJobEntity instances.long findJobCountByQueryCriteria(DeadLetterJobQueryImpl jobQuery)
findJobsByQueryCriteria(DeadLetterJobQueryImpl), but only returns a count and not the instances itself.Copyright © 2021 Flowable. All rights reserved.