![]() |
Zeebe C# Client 2.9.0
C# Client to communicate with an Zeebe Gateway
|
Command to modify a process instance. More...
Public Member Functions | |
IModifyProcessInstanceCommandStep3 | ActivateElement (string elementId) |
Create an activate Instruction for the given element id. The element will be created within an existing element instance of the flow scope. When activating an element inside a multi-instance element the element instance key of the ancestor must be defined. For this use ActivateElement(string, long). | |
IModifyProcessInstanceCommandStep3 | ActivateElement (string elementId, long ancestorElementInstanceKey) |
Create an activate Instruction for the given element id. The element will be created within the scope that is passed. This scope must be an ancestor of the element that's getting activated. | |
IModifyProcessInstanceCommandStep2 | TerminateElement (long elementInstanceKey) |
Create a terminate instruction for the given element id. | |
Command to modify a process instance.
IModifyProcessInstanceCommandStep3 Zeebe.Client.Api.Commands.IModifyProcessInstanceCommandStep1.ActivateElement | ( | string | elementId | ) |
Create an activate Instruction for the given element id. The element will be created within an existing element instance of the flow scope. When activating an element inside a multi-instance element the element instance key of the ancestor must be defined. For this use ActivateElement(string, long).
elementId | The id of the element to activate. |
IModifyProcessInstanceCommandStep3 Zeebe.Client.Api.Commands.IModifyProcessInstanceCommandStep1.ActivateElement | ( | string | elementId, |
long | ancestorElementInstanceKey ) |
Create an activate Instruction for the given element id. The element will be created within the scope that is passed. This scope must be an ancestor of the element that's getting activated.
elementId | The id of the element to activate. |
ancestorElementInstanceKey | The element instance key in which the element will be created. |
IModifyProcessInstanceCommandStep2 Zeebe.Client.Api.Commands.IModifyProcessInstanceCommandStep1.TerminateElement | ( | long | elementInstanceKey | ) |
Create a terminate instruction for the given element id.
elementInstanceKey | The element instance key of the element to terminate. |