Interface SetJobRetriesByJobsAsyncBuilder
- All Superinterfaces:
SetJobRetriesAsyncBuilder
- All Known Implementing Classes:
SetJobRetriesByJobsAsyncBuilderImpl
Fluent builder to update the number of retries for one or multiple jobs asynchronously.
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies a list of job ids that will be updated.Specifies aJobQuery
to reference jobs that will be updated.Methods inherited from interface org.camunda.bpm.engine.management.SetJobRetriesAsyncBuilder
dueDate, executeAsync
-
Method Details
-
jobQuery
Specifies aJobQuery
to reference jobs that will be updated. If this method andjobIds(List)
is called together, the builder will operate on the jobs referenced by job query and job ids. If neither method is called, aProcessEngineException
is thrown onSetJobRetriesAsyncBuilder.executeAsync()
.- Parameters:
query
- the query to reference jobs that will be updated.- Returns:
- the builder instance
- See Also:
-
jobIds
Specifies a list of job ids that will be updated. If this method andjobQuery(JobQuery)
is called together, the builder will operate on the jobs referenced by job query and job ids. If neither method is called, aProcessEngineException
is thrown onSetJobRetriesAsyncBuilder.executeAsync()
.- Parameters:
jobIds
- The list of job ids that will be updated.- Returns:
- the builder instance
- See Also:
-