Package io.temporal.api.history.v1
Interface TimerCanceledEventAttributesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TimerCanceledEventAttributes,TimerCanceledEventAttributes.Builder
@Generated(value="protoc", comments="annotations:TimerCanceledEventAttributesOrBuilder.java.pb.meta") public interface TimerCanceledEventAttributesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetIdentity()The id of the worker who requested this cancelcom.google.protobuf.ByteStringgetIdentityBytes()The id of the worker who requested this cancellonggetStartedEventId()The id of the `TIMER_STARTED` event itselfjava.lang.StringgetTimerId()Will match the `timer_id` from `TIMER_STARTED` event for this timercom.google.protobuf.ByteStringgetTimerIdBytes()Will match the `timer_id` from `TIMER_STARTED` event for this timerlonggetWorkflowTaskCompletedEventId()The `WORKFLOW_TASK_COMPLETED` event which this command was reported with-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTimerId
java.lang.String getTimerId()
Will match the `timer_id` from `TIMER_STARTED` event for this timer
string timer_id = 1;- Returns:
- The timerId.
-
getTimerIdBytes
com.google.protobuf.ByteString getTimerIdBytes()
Will match the `timer_id` from `TIMER_STARTED` event for this timer
string timer_id = 1;- Returns:
- The bytes for timerId.
-
getStartedEventId
long getStartedEventId()
The id of the `TIMER_STARTED` event itself
int64 started_event_id = 2;- Returns:
- The startedEventId.
-
getWorkflowTaskCompletedEventId
long getWorkflowTaskCompletedEventId()
The `WORKFLOW_TASK_COMPLETED` event which this command was reported with
int64 workflow_task_completed_event_id = 3;- Returns:
- The workflowTaskCompletedEventId.
-
getIdentity
java.lang.String getIdentity()
The id of the worker who requested this cancel
string identity = 4;- Returns:
- The identity.
-
getIdentityBytes
com.google.protobuf.ByteString getIdentityBytes()
The id of the worker who requested this cancel
string identity = 4;- Returns:
- The bytes for identity.
-
-