Interface SetJobRetriesByProcessAsyncBuilder
- All Superinterfaces:
SetJobRetriesAsyncBuilder
- All Known Implementing Classes:
SetJobRetriesByProcessAsyncBuilderImpl
Fluent builder to update the number of retries for one or multiple jobs referenced by process asynchronously.
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies a historic process instance query that identifies runtime process instances with jobs that have to be modified.processInstanceIds
(List<String> processInstanceIds) Specifies a list of process instance ids.Specifies a process instance query.Methods inherited from interface org.camunda.bpm.engine.management.SetJobRetriesAsyncBuilder
dueDate, executeAsync
-
Method Details
-
processInstanceIds
Specifies a list of process instance ids. All jobs belonging to those process instances will be updated. If this method is called together with more methods referencing jobs, the builder will operate on the jobs referenced by all. If no method referencing jobs is called, aProcessEngineException
is thrown onSetJobRetriesAsyncBuilder.executeAsync()
.- Parameters:
processInstanceIds
- the list of process instance ids- Returns:
- the builder instance
- See Also:
-
processInstanceQuery
Specifies a process instance query. All jobs belonging to those process instances will be updated. If this method is called together with more methods referencing jobs, the builder will operate on the jobs referenced by all. If no method referencing jobs is called, aProcessEngineException
is thrown onSetJobRetriesAsyncBuilder.executeAsync()
.- Parameters:
query
- the process instance query- Returns:
- the builder instance
- See Also:
-
historicProcessInstanceQuery
Specifies a historic process instance query that identifies runtime process instances with jobs that have to be modified. All jobs belonging to those process instances will be updated. If this method is called together with more methods referencing jobs, the builder will operate on the jobs referenced by all. If no method referencing jobs is called, aProcessEngineException
is thrown onSetJobRetriesAsyncBuilder.executeAsync()
.- Parameters:
query
- the historic process instance- Returns:
- the builder instance
- See Also:
-