Package io.zeebe.engine.state.instance
Interface VariablesState.VariableListener
-
- All Known Implementing Classes:
UpdateVariableStreamWriter
- Enclosing class:
- VariablesState
public static interface VariablesState.VariableListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCreate(long key, long workflowKey, org.agrona.DirectBuffer name, org.agrona.DirectBuffer value, long variableScopeKey, long rootScopeKey)voidonUpdate(long key, long workflowKey, org.agrona.DirectBuffer name, org.agrona.DirectBuffer value, long variableScopeKey, long rootScopeKey)
-
-
-
Method Detail
-
onCreate
void onCreate(long key, long workflowKey, org.agrona.DirectBuffer name, org.agrona.DirectBuffer value, long variableScopeKey, long rootScopeKey)
-
onUpdate
void onUpdate(long key, long workflowKey, org.agrona.DirectBuffer name, org.agrona.DirectBuffer value, long variableScopeKey, long rootScopeKey)
-
-