Interface UpdateProcessInstancesSuspensionStateBuilder
- All Superinterfaces:
UpdateProcessInstancesRequest
,UpdateProcessInstanceSuspensionStateBuilder
- All Known Implementing Classes:
UpdateProcessInstancesSuspensionStateBuilderImpl
-
Method Summary
Modifier and TypeMethodDescriptionActivates the provided process instances asynchronously.Suspends the provided process instances asynchronously.Methods inherited from interface org.camunda.bpm.engine.runtime.UpdateProcessInstancesRequest
byHistoricProcessInstanceQuery, byProcessInstanceIds, byProcessInstanceIds, byProcessInstanceQuery
Methods inherited from interface org.camunda.bpm.engine.runtime.UpdateProcessInstanceSuspensionStateBuilder
activate, suspend
-
Method Details
-
activateAsync
Batch activateAsync()Activates the provided process instances asynchronously.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
- Throws:
BadUserRequestException
- If no process Instances are found If a process Instance is set to nullAuthorizationException
- if the user has noPermissions.CREATE
orBatchPermissions.CREATE_BATCH_UPDATE_PROCESS_INSTANCES_SUSPEND
permission onResources.BATCH
.
-
suspendAsync
Batch suspendAsync()Suspends the provided process instances asynchronously. This means that the execution is stopped, so the token state will not change. However, actions that do not change token state, like setting/removing variables, etc. will succeed.
Tasks belonging to the suspended process instance will also be suspended. This means that any actions influencing the tasks' lifecycles will fail, such as
- claiming
- completing
- delegation
- changes in task assignees, owners, etc.
If a process instance is in state suspended, the engine will also not execute jobs (timers, messages) associated with this instance.
If you have a process instance hierarchy, suspending one process instance from the hierarchy will not suspend other process instances from that hierarchy.
- Throws:
BadUserRequestException
- If no process Instances are found If a process Instance is set to nullAuthorizationException
- if the user has noPermissions.CREATE
orBatchPermissions.CREATE_BATCH_UPDATE_PROCESS_INSTANCES_SUSPEND
permission onResources.BATCH
.
-