Package io.temporal.api.history.v1
Interface WorkflowExecutionUpdateAcceptedEventAttributesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WorkflowExecutionUpdateAcceptedEventAttributes,WorkflowExecutionUpdateAcceptedEventAttributes.Builder
@Generated(value="protoc", comments="annotations:WorkflowExecutionUpdateAcceptedEventAttributesOrBuilder.java.pb.meta") public interface WorkflowExecutionUpdateAcceptedEventAttributesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequestgetAcceptedRequest()The message payload of the original request message that initiated this update.java.lang.StringgetAcceptedRequestMessageId()The message ID of the original request message that initiated this update.com.google.protobuf.ByteStringgetAcceptedRequestMessageIdBytes()The message ID of the original request message that initiated this update.RequestOrBuildergetAcceptedRequestOrBuilder()The message payload of the original request message that initiated this update.longgetAcceptedRequestSequencingEventId()The event ID used to sequence the original request message.java.lang.StringgetProtocolInstanceId()The instance ID of the update protocol that generated this event.com.google.protobuf.ByteStringgetProtocolInstanceIdBytes()The instance ID of the update protocol that generated this event.booleanhasAcceptedRequest()The message payload of the original request message that initiated this update.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getProtocolInstanceId
java.lang.String getProtocolInstanceId()
The instance ID of the update protocol that generated this event.
string protocol_instance_id = 1;- Returns:
- The protocolInstanceId.
-
getProtocolInstanceIdBytes
com.google.protobuf.ByteString getProtocolInstanceIdBytes()
The instance ID of the update protocol that generated this event.
string protocol_instance_id = 1;- Returns:
- The bytes for protocolInstanceId.
-
getAcceptedRequestMessageId
java.lang.String getAcceptedRequestMessageId()
The message ID of the original request message that initiated this update. Needed so that the worker can recreate and deliver that same message as part of replay.
string accepted_request_message_id = 2;- Returns:
- The acceptedRequestMessageId.
-
getAcceptedRequestMessageIdBytes
com.google.protobuf.ByteString getAcceptedRequestMessageIdBytes()
The message ID of the original request message that initiated this update. Needed so that the worker can recreate and deliver that same message as part of replay.
string accepted_request_message_id = 2;- Returns:
- The bytes for acceptedRequestMessageId.
-
getAcceptedRequestSequencingEventId
long getAcceptedRequestSequencingEventId()
The event ID used to sequence the original request message.
int64 accepted_request_sequencing_event_id = 3;- Returns:
- The acceptedRequestSequencingEventId.
-
hasAcceptedRequest
boolean hasAcceptedRequest()
The message payload of the original request message that initiated this update.
.temporal.api.update.v1.Request accepted_request = 4;- Returns:
- Whether the acceptedRequest field is set.
-
getAcceptedRequest
Request getAcceptedRequest()
The message payload of the original request message that initiated this update.
.temporal.api.update.v1.Request accepted_request = 4;- Returns:
- The acceptedRequest.
-
getAcceptedRequestOrBuilder
RequestOrBuilder getAcceptedRequestOrBuilder()
The message payload of the original request message that initiated this update.
.temporal.api.update.v1.Request accepted_request = 4;
-
-