Package io.zeebe.protocol.record.value
Interface ProcessMessageSubscriptionRecordValue
-
- All Superinterfaces:
JsonSerializable,ProcessInstanceRelated,RecordValue,RecordValueWithVariables
public interface ProcessMessageSubscriptionRecordValue extends RecordValueWithVariables, ProcessInstanceRelated
Represents a process message subscription command or event.See
ProcessMessageSubscriptionIntentfor intents.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetBpmnProcessId()StringgetCorrelationKey()StringgetElementId()longgetElementInstanceKey()longgetMessageKey()StringgetMessageName()longgetProcessInstanceKey()booleanisInterrupting()-
Methods inherited from interface io.zeebe.protocol.record.JsonSerializable
toJson
-
Methods inherited from interface io.zeebe.protocol.record.RecordValueWithVariables
getVariables
-
-
-
-
Method Detail
-
getProcessInstanceKey
long getProcessInstanceKey()
- Specified by:
getProcessInstanceKeyin interfaceProcessInstanceRelated- Returns:
- the process instance key
-
getElementInstanceKey
long getElementInstanceKey()
- Returns:
- the element instance key
-
getBpmnProcessId
String getBpmnProcessId()
- Returns:
- the BPMN process id
-
getMessageKey
long getMessageKey()
- Returns:
- the key of the correlated message
-
getMessageName
String getMessageName()
- Returns:
- the message name
-
getCorrelationKey
String getCorrelationKey()
- Returns:
- the correlation key
-
getElementId
String getElementId()
- Returns:
- the id of the element tied to the subscription.
-
isInterrupting
boolean isInterrupting()
- Returns:
trueif the event tied to the subscription is interrupting. Otherwise, it returnsfalseif the event is non-interrupting.
-
-