Interface SuspendedJobEntityManager
- All Superinterfaces:
EntityManager<SuspendedJobEntity>
- All Known Implementing Classes:
SuspendedJobEntityManagerImpl
- Author:
- Tijs Rademakers
-
Method Summary
Modifier and TypeMethodDescriptionfindJobByCorrelationId
(String correlationId) Find the suspended job with the given correlation id.long
Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl)
, but only returns a count and not the instances itself.Returns allSuspendedJobEntity
instances related to an execution id.Returns allSuspendedJobEntity
instances related to an execution id.findJobsByQueryCriteria
(SuspendedJobQueryImpl jobQuery) Executes aJobQueryImpl
and returns the matchingSuspendedJobEntity
instances.void
updateJobTenantIdForDeployment
(String deploymentId, String newTenantId) Changes the tenantId for all jobs related to a given deployment id.
-
Method Details
-
findJobByCorrelationId
Find the suspended job with the given correlation id. -
findJobsByExecutionId
Returns allSuspendedJobEntity
instances related to an execution id. -
findJobsByProcessInstanceId
Returns allSuspendedJobEntity
instances related to an execution id. -
findJobsByQueryCriteria
Executes aJobQueryImpl
and returns the matchingSuspendedJobEntity
instances. -
findJobCountByQueryCriteria
Same asfindJobsByQueryCriteria(SuspendedJobQueryImpl)
, but only returns a count and not the instances itself. -
updateJobTenantIdForDeployment
Changes the tenantId for all jobs related to a given deployment id.
-