Package io.zeebe.engine.processing.bpmn
Interface BpmnElementContext
-
- All Known Implementing Classes:
BpmnElementContextImpl
public interface BpmnElementContextWorkflow instance-related data of the element that is executed.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BpmnElementContextcopy(long elementInstanceKey, WorkflowInstanceRecord recordValue, WorkflowInstanceIntent intent)BpmnElementTypegetBpmnElementType()org.agrona.DirectBuffergetBpmnProcessId()org.agrona.DirectBuffergetElementId()longgetElementInstanceKey()longgetFlowScopeKey()WorkflowInstanceIntentgetIntent()longgetParentElementInstanceKey()longgetParentWorkflowInstanceKey()WorkflowInstanceRecordgetRecordValue()longgetWorkflowInstanceKey()longgetWorkflowKey()intgetWorkflowVersion()
-
-
-
Method Detail
-
getElementInstanceKey
long getElementInstanceKey()
-
getFlowScopeKey
long getFlowScopeKey()
-
getWorkflowInstanceKey
long getWorkflowInstanceKey()
-
getParentWorkflowInstanceKey
long getParentWorkflowInstanceKey()
-
getParentElementInstanceKey
long getParentElementInstanceKey()
-
getWorkflowKey
long getWorkflowKey()
-
getWorkflowVersion
int getWorkflowVersion()
-
getBpmnProcessId
org.agrona.DirectBuffer getBpmnProcessId()
-
getElementId
org.agrona.DirectBuffer getElementId()
-
getBpmnElementType
BpmnElementType getBpmnElementType()
-
getRecordValue
WorkflowInstanceRecord getRecordValue()
-
getIntent
WorkflowInstanceIntent getIntent()
-
copy
BpmnElementContext copy(long elementInstanceKey, WorkflowInstanceRecord recordValue, WorkflowInstanceIntent intent)
-
-