public interface UpdateProcessInstanceSuspensionStateBuilder
void activate()
Activates the provided process instances.
If you have a process instance hierarchy, activating one process instance from the hierarchy will not activate other process instances from that hierarchy.
ProcessEngineException
- If no such processDefinition can be found.AuthorizationException
- if the user has no Permissions.UPDATE_INSTANCE
permission
on Resources.PROCESS_DEFINITION
.void suspend()
Suspends the provided process instances. 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
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.
ProcessEngineException
- If no such processDefinition can be found.AuthorizationException
- if the user has no Permissions.UPDATE_INSTANCE
permission
on Resources.PROCESS_DEFINITION
.Copyright © 2017. All rights reserved.