public interface DeadLetterJobEntityManager extends EntityManager<DeadLetterJobEntity>
| Modifier and Type | Method and Description |
|---|---|
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 ExecutionEntity. |
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
DeploymentEntity. |
List<DeadLetterJobEntity> findJobsByExecutionId(String id)
DeadLetterJobEntity instances related to an ExecutionEntity.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 © 2020 Flowable. All rights reserved.