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