Interface HistoryEventOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
HistoryEvent, HistoryEvent.Builder

@Generated(value="protoc", comments="annotations:HistoryEventOrBuilder.java.pb.meta") public interface HistoryEventOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Details

    • getEventId

      long getEventId()
       Monotonically increasing event number, starts at 1.
       
      int64 event_id = 1;
      Returns:
      The eventId.
    • hasEventTime

      boolean hasEventTime()
      .google.protobuf.Timestamp event_time = 2;
      Returns:
      Whether the eventTime field is set.
    • getEventTime

      com.google.protobuf.Timestamp getEventTime()
      .google.protobuf.Timestamp event_time = 2;
      Returns:
      The eventTime.
    • getEventTimeOrBuilder

      com.google.protobuf.TimestampOrBuilder getEventTimeOrBuilder()
      .google.protobuf.Timestamp event_time = 2;
    • getEventTypeValue

      int getEventTypeValue()
      .temporal.api.enums.v1.EventType event_type = 3;
      Returns:
      The enum numeric value on the wire for eventType.
    • getEventType

      EventType getEventType()
      .temporal.api.enums.v1.EventType event_type = 3;
      Returns:
      The eventType.
    • getVersion

      long getVersion()
       Failover version of the event, used by the server for multi-cluster replication and history
       versioning. SDKs generally ignore this field.
       
      int64 version = 4;
      Returns:
      The version.
    • getTaskId

      long getTaskId()
       Identifier used by the service to order replication and transfer tasks associated with this
       event. SDKs generally ignore this field.
       
      int64 task_id = 5;
      Returns:
      The taskId.
    • getWorkerMayIgnore

      boolean getWorkerMayIgnore()
       Set to true when the SDK may ignore the event as it does not impact workflow state or
       information in any way that the SDK need be concerned with. If an SDK encounters an event
       type which it does not understand, it must error unless this is true. If it is true, it's
       acceptable for the event type and/or attributes to be uninterpretable.
       
      bool worker_may_ignore = 300;
      Returns:
      The workerMayIgnore.
    • hasUserMetadata

      boolean hasUserMetadata()
       Metadata on the event. This is often carried over from commands and client calls. Most events
       won't have this information, and how this information is used is dependent upon the interface
       that reads it.
      
       Current well-known uses:
        * workflow_execution_started_event_attributes - summary and details from start workflow.
        * timer_started_event_attributes - summary represents an identifier for the timer for use by
          user interfaces.
       
      .temporal.api.sdk.v1.UserMetadata user_metadata = 301;
      Returns:
      Whether the userMetadata field is set.
    • getUserMetadata

      UserMetadata getUserMetadata()
       Metadata on the event. This is often carried over from commands and client calls. Most events
       won't have this information, and how this information is used is dependent upon the interface
       that reads it.
      
       Current well-known uses:
        * workflow_execution_started_event_attributes - summary and details from start workflow.
        * timer_started_event_attributes - summary represents an identifier for the timer for use by
          user interfaces.
       
      .temporal.api.sdk.v1.UserMetadata user_metadata = 301;
      Returns:
      The userMetadata.
    • getUserMetadataOrBuilder

      UserMetadataOrBuilder getUserMetadataOrBuilder()
       Metadata on the event. This is often carried over from commands and client calls. Most events
       won't have this information, and how this information is used is dependent upon the interface
       that reads it.
      
       Current well-known uses:
        * workflow_execution_started_event_attributes - summary and details from start workflow.
        * timer_started_event_attributes - summary represents an identifier for the timer for use by
          user interfaces.
       
      .temporal.api.sdk.v1.UserMetadata user_metadata = 301;
    • getLinksList

      List<Link> getLinksList()
       Links to related entities, such as the entity that started this event's workflow.
       
      repeated .temporal.api.common.v1.Link links = 302;
    • getLinks

      Link getLinks(int index)
       Links to related entities, such as the entity that started this event's workflow.
       
      repeated .temporal.api.common.v1.Link links = 302;
    • getLinksCount

      int getLinksCount()
       Links to related entities, such as the entity that started this event's workflow.
       
      repeated .temporal.api.common.v1.Link links = 302;
    • getLinksOrBuilderList

      List<? extends LinkOrBuilder> getLinksOrBuilderList()
       Links to related entities, such as the entity that started this event's workflow.
       
      repeated .temporal.api.common.v1.Link links = 302;
    • getLinksOrBuilder

      LinkOrBuilder getLinksOrBuilder(int index)
       Links to related entities, such as the entity that started this event's workflow.
       
      repeated .temporal.api.common.v1.Link links = 302;
    • hasPrincipal

      boolean hasPrincipal()
       Server-computed authenticated caller identity associated with this event.
       
      .temporal.api.common.v1.Principal principal = 303;
      Returns:
      Whether the principal field is set.
    • getPrincipal

      Principal getPrincipal()
       Server-computed authenticated caller identity associated with this event.
       
      .temporal.api.common.v1.Principal principal = 303;
      Returns:
      The principal.
    • getPrincipalOrBuilder

      PrincipalOrBuilder getPrincipalOrBuilder()
       Server-computed authenticated caller identity associated with this event.
       
      .temporal.api.common.v1.Principal principal = 303;
    • getEventGroupMarkersList

      List<EventGroupMarker> getEventGroupMarkersList()
       Event group markers attached to this event.
       
      repeated .temporal.api.sdk.v1.EventGroupMarker event_group_markers = 304;
    • getEventGroupMarkers

      EventGroupMarker getEventGroupMarkers(int index)
       Event group markers attached to this event.
       
      repeated .temporal.api.sdk.v1.EventGroupMarker event_group_markers = 304;
    • getEventGroupMarkersCount

      int getEventGroupMarkersCount()
       Event group markers attached to this event.
       
      repeated .temporal.api.sdk.v1.EventGroupMarker event_group_markers = 304;
    • getEventGroupMarkersOrBuilderList

      List<? extends EventGroupMarkerOrBuilder> getEventGroupMarkersOrBuilderList()
       Event group markers attached to this event.
       
      repeated .temporal.api.sdk.v1.EventGroupMarker event_group_markers = 304;
    • getEventGroupMarkersOrBuilder

      EventGroupMarkerOrBuilder getEventGroupMarkersOrBuilder(int index)
       Event group markers attached to this event.
       
      repeated .temporal.api.sdk.v1.EventGroupMarker event_group_markers = 304;
    • hasWorkflowExecutionStartedEventAttributes

      boolean hasWorkflowExecutionStartedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionStartedEventAttributes workflow_execution_started_event_attributes = 6;
      Returns:
      Whether the workflowExecutionStartedEventAttributes field is set.
    • getWorkflowExecutionStartedEventAttributes

      WorkflowExecutionStartedEventAttributes getWorkflowExecutionStartedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionStartedEventAttributes workflow_execution_started_event_attributes = 6;
      Returns:
      The workflowExecutionStartedEventAttributes.
    • getWorkflowExecutionStartedEventAttributesOrBuilder

      WorkflowExecutionStartedEventAttributesOrBuilder getWorkflowExecutionStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionStartedEventAttributes workflow_execution_started_event_attributes = 6;
    • hasWorkflowExecutionCompletedEventAttributes

      boolean hasWorkflowExecutionCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCompletedEventAttributes workflow_execution_completed_event_attributes = 7;
      Returns:
      Whether the workflowExecutionCompletedEventAttributes field is set.
    • getWorkflowExecutionCompletedEventAttributes

      WorkflowExecutionCompletedEventAttributes getWorkflowExecutionCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCompletedEventAttributes workflow_execution_completed_event_attributes = 7;
      Returns:
      The workflowExecutionCompletedEventAttributes.
    • getWorkflowExecutionCompletedEventAttributesOrBuilder

      WorkflowExecutionCompletedEventAttributesOrBuilder getWorkflowExecutionCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionCompletedEventAttributes workflow_execution_completed_event_attributes = 7;
    • hasWorkflowExecutionFailedEventAttributes

      boolean hasWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionFailedEventAttributes workflow_execution_failed_event_attributes = 8;
      Returns:
      Whether the workflowExecutionFailedEventAttributes field is set.
    • getWorkflowExecutionFailedEventAttributes

      WorkflowExecutionFailedEventAttributes getWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionFailedEventAttributes workflow_execution_failed_event_attributes = 8;
      Returns:
      The workflowExecutionFailedEventAttributes.
    • getWorkflowExecutionFailedEventAttributesOrBuilder

      WorkflowExecutionFailedEventAttributesOrBuilder getWorkflowExecutionFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionFailedEventAttributes workflow_execution_failed_event_attributes = 8;
    • hasWorkflowExecutionTimedOutEventAttributes

      boolean hasWorkflowExecutionTimedOutEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTimedOutEventAttributes workflow_execution_timed_out_event_attributes = 9;
      Returns:
      Whether the workflowExecutionTimedOutEventAttributes field is set.
    • getWorkflowExecutionTimedOutEventAttributes

      WorkflowExecutionTimedOutEventAttributes getWorkflowExecutionTimedOutEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTimedOutEventAttributes workflow_execution_timed_out_event_attributes = 9;
      Returns:
      The workflowExecutionTimedOutEventAttributes.
    • getWorkflowExecutionTimedOutEventAttributesOrBuilder

      WorkflowExecutionTimedOutEventAttributesOrBuilder getWorkflowExecutionTimedOutEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionTimedOutEventAttributes workflow_execution_timed_out_event_attributes = 9;
    • hasWorkflowTaskScheduledEventAttributes

      boolean hasWorkflowTaskScheduledEventAttributes()
      .temporal.api.history.v1.WorkflowTaskScheduledEventAttributes workflow_task_scheduled_event_attributes = 10;
      Returns:
      Whether the workflowTaskScheduledEventAttributes field is set.
    • getWorkflowTaskScheduledEventAttributes

      WorkflowTaskScheduledEventAttributes getWorkflowTaskScheduledEventAttributes()
      .temporal.api.history.v1.WorkflowTaskScheduledEventAttributes workflow_task_scheduled_event_attributes = 10;
      Returns:
      The workflowTaskScheduledEventAttributes.
    • getWorkflowTaskScheduledEventAttributesOrBuilder

      WorkflowTaskScheduledEventAttributesOrBuilder getWorkflowTaskScheduledEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowTaskScheduledEventAttributes workflow_task_scheduled_event_attributes = 10;
    • hasWorkflowTaskStartedEventAttributes

      boolean hasWorkflowTaskStartedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskStartedEventAttributes workflow_task_started_event_attributes = 11;
      Returns:
      Whether the workflowTaskStartedEventAttributes field is set.
    • getWorkflowTaskStartedEventAttributes

      WorkflowTaskStartedEventAttributes getWorkflowTaskStartedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskStartedEventAttributes workflow_task_started_event_attributes = 11;
      Returns:
      The workflowTaskStartedEventAttributes.
    • getWorkflowTaskStartedEventAttributesOrBuilder

      WorkflowTaskStartedEventAttributesOrBuilder getWorkflowTaskStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowTaskStartedEventAttributes workflow_task_started_event_attributes = 11;
    • hasWorkflowTaskCompletedEventAttributes

      boolean hasWorkflowTaskCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskCompletedEventAttributes workflow_task_completed_event_attributes = 12;
      Returns:
      Whether the workflowTaskCompletedEventAttributes field is set.
    • getWorkflowTaskCompletedEventAttributes

      WorkflowTaskCompletedEventAttributes getWorkflowTaskCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskCompletedEventAttributes workflow_task_completed_event_attributes = 12;
      Returns:
      The workflowTaskCompletedEventAttributes.
    • getWorkflowTaskCompletedEventAttributesOrBuilder

      WorkflowTaskCompletedEventAttributesOrBuilder getWorkflowTaskCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowTaskCompletedEventAttributes workflow_task_completed_event_attributes = 12;
    • hasWorkflowTaskTimedOutEventAttributes

      boolean hasWorkflowTaskTimedOutEventAttributes()
      .temporal.api.history.v1.WorkflowTaskTimedOutEventAttributes workflow_task_timed_out_event_attributes = 13;
      Returns:
      Whether the workflowTaskTimedOutEventAttributes field is set.
    • getWorkflowTaskTimedOutEventAttributes

      WorkflowTaskTimedOutEventAttributes getWorkflowTaskTimedOutEventAttributes()
      .temporal.api.history.v1.WorkflowTaskTimedOutEventAttributes workflow_task_timed_out_event_attributes = 13;
      Returns:
      The workflowTaskTimedOutEventAttributes.
    • getWorkflowTaskTimedOutEventAttributesOrBuilder

      WorkflowTaskTimedOutEventAttributesOrBuilder getWorkflowTaskTimedOutEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowTaskTimedOutEventAttributes workflow_task_timed_out_event_attributes = 13;
    • hasWorkflowTaskFailedEventAttributes

      boolean hasWorkflowTaskFailedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskFailedEventAttributes workflow_task_failed_event_attributes = 14;
      Returns:
      Whether the workflowTaskFailedEventAttributes field is set.
    • getWorkflowTaskFailedEventAttributes

      WorkflowTaskFailedEventAttributes getWorkflowTaskFailedEventAttributes()
      .temporal.api.history.v1.WorkflowTaskFailedEventAttributes workflow_task_failed_event_attributes = 14;
      Returns:
      The workflowTaskFailedEventAttributes.
    • getWorkflowTaskFailedEventAttributesOrBuilder

      WorkflowTaskFailedEventAttributesOrBuilder getWorkflowTaskFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowTaskFailedEventAttributes workflow_task_failed_event_attributes = 14;
    • hasActivityTaskScheduledEventAttributes

      boolean hasActivityTaskScheduledEventAttributes()
      .temporal.api.history.v1.ActivityTaskScheduledEventAttributes activity_task_scheduled_event_attributes = 15;
      Returns:
      Whether the activityTaskScheduledEventAttributes field is set.
    • getActivityTaskScheduledEventAttributes

      ActivityTaskScheduledEventAttributes getActivityTaskScheduledEventAttributes()
      .temporal.api.history.v1.ActivityTaskScheduledEventAttributes activity_task_scheduled_event_attributes = 15;
      Returns:
      The activityTaskScheduledEventAttributes.
    • getActivityTaskScheduledEventAttributesOrBuilder

      ActivityTaskScheduledEventAttributesOrBuilder getActivityTaskScheduledEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskScheduledEventAttributes activity_task_scheduled_event_attributes = 15;
    • hasActivityTaskStartedEventAttributes

      boolean hasActivityTaskStartedEventAttributes()
      .temporal.api.history.v1.ActivityTaskStartedEventAttributes activity_task_started_event_attributes = 16;
      Returns:
      Whether the activityTaskStartedEventAttributes field is set.
    • getActivityTaskStartedEventAttributes

      ActivityTaskStartedEventAttributes getActivityTaskStartedEventAttributes()
      .temporal.api.history.v1.ActivityTaskStartedEventAttributes activity_task_started_event_attributes = 16;
      Returns:
      The activityTaskStartedEventAttributes.
    • getActivityTaskStartedEventAttributesOrBuilder

      ActivityTaskStartedEventAttributesOrBuilder getActivityTaskStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskStartedEventAttributes activity_task_started_event_attributes = 16;
    • hasActivityTaskCompletedEventAttributes

      boolean hasActivityTaskCompletedEventAttributes()
      .temporal.api.history.v1.ActivityTaskCompletedEventAttributes activity_task_completed_event_attributes = 17;
      Returns:
      Whether the activityTaskCompletedEventAttributes field is set.
    • getActivityTaskCompletedEventAttributes

      ActivityTaskCompletedEventAttributes getActivityTaskCompletedEventAttributes()
      .temporal.api.history.v1.ActivityTaskCompletedEventAttributes activity_task_completed_event_attributes = 17;
      Returns:
      The activityTaskCompletedEventAttributes.
    • getActivityTaskCompletedEventAttributesOrBuilder

      ActivityTaskCompletedEventAttributesOrBuilder getActivityTaskCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskCompletedEventAttributes activity_task_completed_event_attributes = 17;
    • hasActivityTaskFailedEventAttributes

      boolean hasActivityTaskFailedEventAttributes()
      .temporal.api.history.v1.ActivityTaskFailedEventAttributes activity_task_failed_event_attributes = 18;
      Returns:
      Whether the activityTaskFailedEventAttributes field is set.
    • getActivityTaskFailedEventAttributes

      ActivityTaskFailedEventAttributes getActivityTaskFailedEventAttributes()
      .temporal.api.history.v1.ActivityTaskFailedEventAttributes activity_task_failed_event_attributes = 18;
      Returns:
      The activityTaskFailedEventAttributes.
    • getActivityTaskFailedEventAttributesOrBuilder

      ActivityTaskFailedEventAttributesOrBuilder getActivityTaskFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskFailedEventAttributes activity_task_failed_event_attributes = 18;
    • hasActivityTaskTimedOutEventAttributes

      boolean hasActivityTaskTimedOutEventAttributes()
      .temporal.api.history.v1.ActivityTaskTimedOutEventAttributes activity_task_timed_out_event_attributes = 19;
      Returns:
      Whether the activityTaskTimedOutEventAttributes field is set.
    • getActivityTaskTimedOutEventAttributes

      ActivityTaskTimedOutEventAttributes getActivityTaskTimedOutEventAttributes()
      .temporal.api.history.v1.ActivityTaskTimedOutEventAttributes activity_task_timed_out_event_attributes = 19;
      Returns:
      The activityTaskTimedOutEventAttributes.
    • getActivityTaskTimedOutEventAttributesOrBuilder

      ActivityTaskTimedOutEventAttributesOrBuilder getActivityTaskTimedOutEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskTimedOutEventAttributes activity_task_timed_out_event_attributes = 19;
    • hasTimerStartedEventAttributes

      boolean hasTimerStartedEventAttributes()
      .temporal.api.history.v1.TimerStartedEventAttributes timer_started_event_attributes = 20;
      Returns:
      Whether the timerStartedEventAttributes field is set.
    • getTimerStartedEventAttributes

      TimerStartedEventAttributes getTimerStartedEventAttributes()
      .temporal.api.history.v1.TimerStartedEventAttributes timer_started_event_attributes = 20;
      Returns:
      The timerStartedEventAttributes.
    • getTimerStartedEventAttributesOrBuilder

      TimerStartedEventAttributesOrBuilder getTimerStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.TimerStartedEventAttributes timer_started_event_attributes = 20;
    • hasTimerFiredEventAttributes

      boolean hasTimerFiredEventAttributes()
      .temporal.api.history.v1.TimerFiredEventAttributes timer_fired_event_attributes = 21;
      Returns:
      Whether the timerFiredEventAttributes field is set.
    • getTimerFiredEventAttributes

      TimerFiredEventAttributes getTimerFiredEventAttributes()
      .temporal.api.history.v1.TimerFiredEventAttributes timer_fired_event_attributes = 21;
      Returns:
      The timerFiredEventAttributes.
    • getTimerFiredEventAttributesOrBuilder

      TimerFiredEventAttributesOrBuilder getTimerFiredEventAttributesOrBuilder()
      .temporal.api.history.v1.TimerFiredEventAttributes timer_fired_event_attributes = 21;
    • hasActivityTaskCancelRequestedEventAttributes

      boolean hasActivityTaskCancelRequestedEventAttributes()
      .temporal.api.history.v1.ActivityTaskCancelRequestedEventAttributes activity_task_cancel_requested_event_attributes = 22;
      Returns:
      Whether the activityTaskCancelRequestedEventAttributes field is set.
    • getActivityTaskCancelRequestedEventAttributes

      ActivityTaskCancelRequestedEventAttributes getActivityTaskCancelRequestedEventAttributes()
      .temporal.api.history.v1.ActivityTaskCancelRequestedEventAttributes activity_task_cancel_requested_event_attributes = 22;
      Returns:
      The activityTaskCancelRequestedEventAttributes.
    • getActivityTaskCancelRequestedEventAttributesOrBuilder

      ActivityTaskCancelRequestedEventAttributesOrBuilder getActivityTaskCancelRequestedEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskCancelRequestedEventAttributes activity_task_cancel_requested_event_attributes = 22;
    • hasActivityTaskCanceledEventAttributes

      boolean hasActivityTaskCanceledEventAttributes()
      .temporal.api.history.v1.ActivityTaskCanceledEventAttributes activity_task_canceled_event_attributes = 23;
      Returns:
      Whether the activityTaskCanceledEventAttributes field is set.
    • getActivityTaskCanceledEventAttributes

      ActivityTaskCanceledEventAttributes getActivityTaskCanceledEventAttributes()
      .temporal.api.history.v1.ActivityTaskCanceledEventAttributes activity_task_canceled_event_attributes = 23;
      Returns:
      The activityTaskCanceledEventAttributes.
    • getActivityTaskCanceledEventAttributesOrBuilder

      ActivityTaskCanceledEventAttributesOrBuilder getActivityTaskCanceledEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityTaskCanceledEventAttributes activity_task_canceled_event_attributes = 23;
    • hasTimerCanceledEventAttributes

      boolean hasTimerCanceledEventAttributes()
      .temporal.api.history.v1.TimerCanceledEventAttributes timer_canceled_event_attributes = 24;
      Returns:
      Whether the timerCanceledEventAttributes field is set.
    • getTimerCanceledEventAttributes

      TimerCanceledEventAttributes getTimerCanceledEventAttributes()
      .temporal.api.history.v1.TimerCanceledEventAttributes timer_canceled_event_attributes = 24;
      Returns:
      The timerCanceledEventAttributes.
    • getTimerCanceledEventAttributesOrBuilder

      TimerCanceledEventAttributesOrBuilder getTimerCanceledEventAttributesOrBuilder()
      .temporal.api.history.v1.TimerCanceledEventAttributes timer_canceled_event_attributes = 24;
    • hasMarkerRecordedEventAttributes

      boolean hasMarkerRecordedEventAttributes()
      .temporal.api.history.v1.MarkerRecordedEventAttributes marker_recorded_event_attributes = 25;
      Returns:
      Whether the markerRecordedEventAttributes field is set.
    • getMarkerRecordedEventAttributes

      MarkerRecordedEventAttributes getMarkerRecordedEventAttributes()
      .temporal.api.history.v1.MarkerRecordedEventAttributes marker_recorded_event_attributes = 25;
      Returns:
      The markerRecordedEventAttributes.
    • getMarkerRecordedEventAttributesOrBuilder

      MarkerRecordedEventAttributesOrBuilder getMarkerRecordedEventAttributesOrBuilder()
      .temporal.api.history.v1.MarkerRecordedEventAttributes marker_recorded_event_attributes = 25;
    • hasWorkflowExecutionSignaledEventAttributes

      boolean hasWorkflowExecutionSignaledEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionSignaledEventAttributes workflow_execution_signaled_event_attributes = 26;
      Returns:
      Whether the workflowExecutionSignaledEventAttributes field is set.
    • getWorkflowExecutionSignaledEventAttributes

      WorkflowExecutionSignaledEventAttributes getWorkflowExecutionSignaledEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionSignaledEventAttributes workflow_execution_signaled_event_attributes = 26;
      Returns:
      The workflowExecutionSignaledEventAttributes.
    • getWorkflowExecutionSignaledEventAttributesOrBuilder

      WorkflowExecutionSignaledEventAttributesOrBuilder getWorkflowExecutionSignaledEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionSignaledEventAttributes workflow_execution_signaled_event_attributes = 26;
    • hasWorkflowExecutionTerminatedEventAttributes

      boolean hasWorkflowExecutionTerminatedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTerminatedEventAttributes workflow_execution_terminated_event_attributes = 27;
      Returns:
      Whether the workflowExecutionTerminatedEventAttributes field is set.
    • getWorkflowExecutionTerminatedEventAttributes

      WorkflowExecutionTerminatedEventAttributes getWorkflowExecutionTerminatedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTerminatedEventAttributes workflow_execution_terminated_event_attributes = 27;
      Returns:
      The workflowExecutionTerminatedEventAttributes.
    • getWorkflowExecutionTerminatedEventAttributesOrBuilder

      WorkflowExecutionTerminatedEventAttributesOrBuilder getWorkflowExecutionTerminatedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionTerminatedEventAttributes workflow_execution_terminated_event_attributes = 27;
    • hasWorkflowExecutionCancelRequestedEventAttributes

      boolean hasWorkflowExecutionCancelRequestedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCancelRequestedEventAttributes workflow_execution_cancel_requested_event_attributes = 28;
      Returns:
      Whether the workflowExecutionCancelRequestedEventAttributes field is set.
    • getWorkflowExecutionCancelRequestedEventAttributes

      WorkflowExecutionCancelRequestedEventAttributes getWorkflowExecutionCancelRequestedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCancelRequestedEventAttributes workflow_execution_cancel_requested_event_attributes = 28;
      Returns:
      The workflowExecutionCancelRequestedEventAttributes.
    • getWorkflowExecutionCancelRequestedEventAttributesOrBuilder

      WorkflowExecutionCancelRequestedEventAttributesOrBuilder getWorkflowExecutionCancelRequestedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionCancelRequestedEventAttributes workflow_execution_cancel_requested_event_attributes = 28;
    • hasWorkflowExecutionCanceledEventAttributes

      boolean hasWorkflowExecutionCanceledEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCanceledEventAttributes workflow_execution_canceled_event_attributes = 29;
      Returns:
      Whether the workflowExecutionCanceledEventAttributes field is set.
    • getWorkflowExecutionCanceledEventAttributes

      WorkflowExecutionCanceledEventAttributes getWorkflowExecutionCanceledEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionCanceledEventAttributes workflow_execution_canceled_event_attributes = 29;
      Returns:
      The workflowExecutionCanceledEventAttributes.
    • getWorkflowExecutionCanceledEventAttributesOrBuilder

      WorkflowExecutionCanceledEventAttributesOrBuilder getWorkflowExecutionCanceledEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionCanceledEventAttributes workflow_execution_canceled_event_attributes = 29;
    • hasRequestCancelExternalWorkflowExecutionInitiatedEventAttributes

      boolean hasRequestCancelExternalWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionInitiatedEventAttributes request_cancel_external_workflow_execution_initiated_event_attributes = 30;
      Returns:
      Whether the requestCancelExternalWorkflowExecutionInitiatedEventAttributes field is set.
    • getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes

      RequestCancelExternalWorkflowExecutionInitiatedEventAttributes getRequestCancelExternalWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionInitiatedEventAttributes request_cancel_external_workflow_execution_initiated_event_attributes = 30;
      Returns:
      The requestCancelExternalWorkflowExecutionInitiatedEventAttributes.
    • getRequestCancelExternalWorkflowExecutionInitiatedEventAttributesOrBuilder

      RequestCancelExternalWorkflowExecutionInitiatedEventAttributesOrBuilder getRequestCancelExternalWorkflowExecutionInitiatedEventAttributesOrBuilder()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionInitiatedEventAttributes request_cancel_external_workflow_execution_initiated_event_attributes = 30;
    • hasRequestCancelExternalWorkflowExecutionFailedEventAttributes

      boolean hasRequestCancelExternalWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionFailedEventAttributes request_cancel_external_workflow_execution_failed_event_attributes = 31;
      Returns:
      Whether the requestCancelExternalWorkflowExecutionFailedEventAttributes field is set.
    • getRequestCancelExternalWorkflowExecutionFailedEventAttributes

      RequestCancelExternalWorkflowExecutionFailedEventAttributes getRequestCancelExternalWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionFailedEventAttributes request_cancel_external_workflow_execution_failed_event_attributes = 31;
      Returns:
      The requestCancelExternalWorkflowExecutionFailedEventAttributes.
    • getRequestCancelExternalWorkflowExecutionFailedEventAttributesOrBuilder

      RequestCancelExternalWorkflowExecutionFailedEventAttributesOrBuilder getRequestCancelExternalWorkflowExecutionFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.RequestCancelExternalWorkflowExecutionFailedEventAttributes request_cancel_external_workflow_execution_failed_event_attributes = 31;
    • hasExternalWorkflowExecutionCancelRequestedEventAttributes

      boolean hasExternalWorkflowExecutionCancelRequestedEventAttributes()
      .temporal.api.history.v1.ExternalWorkflowExecutionCancelRequestedEventAttributes external_workflow_execution_cancel_requested_event_attributes = 32;
      Returns:
      Whether the externalWorkflowExecutionCancelRequestedEventAttributes field is set.
    • getExternalWorkflowExecutionCancelRequestedEventAttributes

      ExternalWorkflowExecutionCancelRequestedEventAttributes getExternalWorkflowExecutionCancelRequestedEventAttributes()
      .temporal.api.history.v1.ExternalWorkflowExecutionCancelRequestedEventAttributes external_workflow_execution_cancel_requested_event_attributes = 32;
      Returns:
      The externalWorkflowExecutionCancelRequestedEventAttributes.
    • getExternalWorkflowExecutionCancelRequestedEventAttributesOrBuilder

      ExternalWorkflowExecutionCancelRequestedEventAttributesOrBuilder getExternalWorkflowExecutionCancelRequestedEventAttributesOrBuilder()
      .temporal.api.history.v1.ExternalWorkflowExecutionCancelRequestedEventAttributes external_workflow_execution_cancel_requested_event_attributes = 32;
    • hasWorkflowExecutionContinuedAsNewEventAttributes

      boolean hasWorkflowExecutionContinuedAsNewEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionContinuedAsNewEventAttributes workflow_execution_continued_as_new_event_attributes = 33;
      Returns:
      Whether the workflowExecutionContinuedAsNewEventAttributes field is set.
    • getWorkflowExecutionContinuedAsNewEventAttributes

      WorkflowExecutionContinuedAsNewEventAttributes getWorkflowExecutionContinuedAsNewEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionContinuedAsNewEventAttributes workflow_execution_continued_as_new_event_attributes = 33;
      Returns:
      The workflowExecutionContinuedAsNewEventAttributes.
    • getWorkflowExecutionContinuedAsNewEventAttributesOrBuilder

      WorkflowExecutionContinuedAsNewEventAttributesOrBuilder getWorkflowExecutionContinuedAsNewEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionContinuedAsNewEventAttributes workflow_execution_continued_as_new_event_attributes = 33;
    • hasStartChildWorkflowExecutionInitiatedEventAttributes

      boolean hasStartChildWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.StartChildWorkflowExecutionInitiatedEventAttributes start_child_workflow_execution_initiated_event_attributes = 34;
      Returns:
      Whether the startChildWorkflowExecutionInitiatedEventAttributes field is set.
    • getStartChildWorkflowExecutionInitiatedEventAttributes

      StartChildWorkflowExecutionInitiatedEventAttributes getStartChildWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.StartChildWorkflowExecutionInitiatedEventAttributes start_child_workflow_execution_initiated_event_attributes = 34;
      Returns:
      The startChildWorkflowExecutionInitiatedEventAttributes.
    • getStartChildWorkflowExecutionInitiatedEventAttributesOrBuilder

      StartChildWorkflowExecutionInitiatedEventAttributesOrBuilder getStartChildWorkflowExecutionInitiatedEventAttributesOrBuilder()
      .temporal.api.history.v1.StartChildWorkflowExecutionInitiatedEventAttributes start_child_workflow_execution_initiated_event_attributes = 34;
    • hasStartChildWorkflowExecutionFailedEventAttributes

      boolean hasStartChildWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.StartChildWorkflowExecutionFailedEventAttributes start_child_workflow_execution_failed_event_attributes = 35;
      Returns:
      Whether the startChildWorkflowExecutionFailedEventAttributes field is set.
    • getStartChildWorkflowExecutionFailedEventAttributes

      StartChildWorkflowExecutionFailedEventAttributes getStartChildWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.StartChildWorkflowExecutionFailedEventAttributes start_child_workflow_execution_failed_event_attributes = 35;
      Returns:
      The startChildWorkflowExecutionFailedEventAttributes.
    • getStartChildWorkflowExecutionFailedEventAttributesOrBuilder

      StartChildWorkflowExecutionFailedEventAttributesOrBuilder getStartChildWorkflowExecutionFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.StartChildWorkflowExecutionFailedEventAttributes start_child_workflow_execution_failed_event_attributes = 35;
    • hasChildWorkflowExecutionStartedEventAttributes

      boolean hasChildWorkflowExecutionStartedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionStartedEventAttributes child_workflow_execution_started_event_attributes = 36;
      Returns:
      Whether the childWorkflowExecutionStartedEventAttributes field is set.
    • getChildWorkflowExecutionStartedEventAttributes

      ChildWorkflowExecutionStartedEventAttributes getChildWorkflowExecutionStartedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionStartedEventAttributes child_workflow_execution_started_event_attributes = 36;
      Returns:
      The childWorkflowExecutionStartedEventAttributes.
    • getChildWorkflowExecutionStartedEventAttributesOrBuilder

      ChildWorkflowExecutionStartedEventAttributesOrBuilder getChildWorkflowExecutionStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionStartedEventAttributes child_workflow_execution_started_event_attributes = 36;
    • hasChildWorkflowExecutionCompletedEventAttributes

      boolean hasChildWorkflowExecutionCompletedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionCompletedEventAttributes child_workflow_execution_completed_event_attributes = 37;
      Returns:
      Whether the childWorkflowExecutionCompletedEventAttributes field is set.
    • getChildWorkflowExecutionCompletedEventAttributes

      ChildWorkflowExecutionCompletedEventAttributes getChildWorkflowExecutionCompletedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionCompletedEventAttributes child_workflow_execution_completed_event_attributes = 37;
      Returns:
      The childWorkflowExecutionCompletedEventAttributes.
    • getChildWorkflowExecutionCompletedEventAttributesOrBuilder

      ChildWorkflowExecutionCompletedEventAttributesOrBuilder getChildWorkflowExecutionCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionCompletedEventAttributes child_workflow_execution_completed_event_attributes = 37;
    • hasChildWorkflowExecutionFailedEventAttributes

      boolean hasChildWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionFailedEventAttributes child_workflow_execution_failed_event_attributes = 38;
      Returns:
      Whether the childWorkflowExecutionFailedEventAttributes field is set.
    • getChildWorkflowExecutionFailedEventAttributes

      ChildWorkflowExecutionFailedEventAttributes getChildWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionFailedEventAttributes child_workflow_execution_failed_event_attributes = 38;
      Returns:
      The childWorkflowExecutionFailedEventAttributes.
    • getChildWorkflowExecutionFailedEventAttributesOrBuilder

      ChildWorkflowExecutionFailedEventAttributesOrBuilder getChildWorkflowExecutionFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionFailedEventAttributes child_workflow_execution_failed_event_attributes = 38;
    • hasChildWorkflowExecutionCanceledEventAttributes

      boolean hasChildWorkflowExecutionCanceledEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionCanceledEventAttributes child_workflow_execution_canceled_event_attributes = 39;
      Returns:
      Whether the childWorkflowExecutionCanceledEventAttributes field is set.
    • getChildWorkflowExecutionCanceledEventAttributes

      ChildWorkflowExecutionCanceledEventAttributes getChildWorkflowExecutionCanceledEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionCanceledEventAttributes child_workflow_execution_canceled_event_attributes = 39;
      Returns:
      The childWorkflowExecutionCanceledEventAttributes.
    • getChildWorkflowExecutionCanceledEventAttributesOrBuilder

      ChildWorkflowExecutionCanceledEventAttributesOrBuilder getChildWorkflowExecutionCanceledEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionCanceledEventAttributes child_workflow_execution_canceled_event_attributes = 39;
    • hasChildWorkflowExecutionTimedOutEventAttributes

      boolean hasChildWorkflowExecutionTimedOutEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionTimedOutEventAttributes child_workflow_execution_timed_out_event_attributes = 40;
      Returns:
      Whether the childWorkflowExecutionTimedOutEventAttributes field is set.
    • getChildWorkflowExecutionTimedOutEventAttributes

      ChildWorkflowExecutionTimedOutEventAttributes getChildWorkflowExecutionTimedOutEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionTimedOutEventAttributes child_workflow_execution_timed_out_event_attributes = 40;
      Returns:
      The childWorkflowExecutionTimedOutEventAttributes.
    • getChildWorkflowExecutionTimedOutEventAttributesOrBuilder

      ChildWorkflowExecutionTimedOutEventAttributesOrBuilder getChildWorkflowExecutionTimedOutEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionTimedOutEventAttributes child_workflow_execution_timed_out_event_attributes = 40;
    • hasChildWorkflowExecutionTerminatedEventAttributes

      boolean hasChildWorkflowExecutionTerminatedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionTerminatedEventAttributes child_workflow_execution_terminated_event_attributes = 41;
      Returns:
      Whether the childWorkflowExecutionTerminatedEventAttributes field is set.
    • getChildWorkflowExecutionTerminatedEventAttributes

      ChildWorkflowExecutionTerminatedEventAttributes getChildWorkflowExecutionTerminatedEventAttributes()
      .temporal.api.history.v1.ChildWorkflowExecutionTerminatedEventAttributes child_workflow_execution_terminated_event_attributes = 41;
      Returns:
      The childWorkflowExecutionTerminatedEventAttributes.
    • getChildWorkflowExecutionTerminatedEventAttributesOrBuilder

      ChildWorkflowExecutionTerminatedEventAttributesOrBuilder getChildWorkflowExecutionTerminatedEventAttributesOrBuilder()
      .temporal.api.history.v1.ChildWorkflowExecutionTerminatedEventAttributes child_workflow_execution_terminated_event_attributes = 41;
    • hasSignalExternalWorkflowExecutionInitiatedEventAttributes

      boolean hasSignalExternalWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionInitiatedEventAttributes signal_external_workflow_execution_initiated_event_attributes = 42;
      Returns:
      Whether the signalExternalWorkflowExecutionInitiatedEventAttributes field is set.
    • getSignalExternalWorkflowExecutionInitiatedEventAttributes

      SignalExternalWorkflowExecutionInitiatedEventAttributes getSignalExternalWorkflowExecutionInitiatedEventAttributes()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionInitiatedEventAttributes signal_external_workflow_execution_initiated_event_attributes = 42;
      Returns:
      The signalExternalWorkflowExecutionInitiatedEventAttributes.
    • getSignalExternalWorkflowExecutionInitiatedEventAttributesOrBuilder

      SignalExternalWorkflowExecutionInitiatedEventAttributesOrBuilder getSignalExternalWorkflowExecutionInitiatedEventAttributesOrBuilder()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionInitiatedEventAttributes signal_external_workflow_execution_initiated_event_attributes = 42;
    • hasSignalExternalWorkflowExecutionFailedEventAttributes

      boolean hasSignalExternalWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionFailedEventAttributes signal_external_workflow_execution_failed_event_attributes = 43;
      Returns:
      Whether the signalExternalWorkflowExecutionFailedEventAttributes field is set.
    • getSignalExternalWorkflowExecutionFailedEventAttributes

      SignalExternalWorkflowExecutionFailedEventAttributes getSignalExternalWorkflowExecutionFailedEventAttributes()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionFailedEventAttributes signal_external_workflow_execution_failed_event_attributes = 43;
      Returns:
      The signalExternalWorkflowExecutionFailedEventAttributes.
    • getSignalExternalWorkflowExecutionFailedEventAttributesOrBuilder

      SignalExternalWorkflowExecutionFailedEventAttributesOrBuilder getSignalExternalWorkflowExecutionFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.SignalExternalWorkflowExecutionFailedEventAttributes signal_external_workflow_execution_failed_event_attributes = 43;
    • hasExternalWorkflowExecutionSignaledEventAttributes

      boolean hasExternalWorkflowExecutionSignaledEventAttributes()
      .temporal.api.history.v1.ExternalWorkflowExecutionSignaledEventAttributes external_workflow_execution_signaled_event_attributes = 44;
      Returns:
      Whether the externalWorkflowExecutionSignaledEventAttributes field is set.
    • getExternalWorkflowExecutionSignaledEventAttributes

      ExternalWorkflowExecutionSignaledEventAttributes getExternalWorkflowExecutionSignaledEventAttributes()
      .temporal.api.history.v1.ExternalWorkflowExecutionSignaledEventAttributes external_workflow_execution_signaled_event_attributes = 44;
      Returns:
      The externalWorkflowExecutionSignaledEventAttributes.
    • getExternalWorkflowExecutionSignaledEventAttributesOrBuilder

      ExternalWorkflowExecutionSignaledEventAttributesOrBuilder getExternalWorkflowExecutionSignaledEventAttributesOrBuilder()
      .temporal.api.history.v1.ExternalWorkflowExecutionSignaledEventAttributes external_workflow_execution_signaled_event_attributes = 44;
    • hasUpsertWorkflowSearchAttributesEventAttributes

      boolean hasUpsertWorkflowSearchAttributesEventAttributes()
      .temporal.api.history.v1.UpsertWorkflowSearchAttributesEventAttributes upsert_workflow_search_attributes_event_attributes = 45;
      Returns:
      Whether the upsertWorkflowSearchAttributesEventAttributes field is set.
    • getUpsertWorkflowSearchAttributesEventAttributes

      UpsertWorkflowSearchAttributesEventAttributes getUpsertWorkflowSearchAttributesEventAttributes()
      .temporal.api.history.v1.UpsertWorkflowSearchAttributesEventAttributes upsert_workflow_search_attributes_event_attributes = 45;
      Returns:
      The upsertWorkflowSearchAttributesEventAttributes.
    • getUpsertWorkflowSearchAttributesEventAttributesOrBuilder

      UpsertWorkflowSearchAttributesEventAttributesOrBuilder getUpsertWorkflowSearchAttributesEventAttributesOrBuilder()
      .temporal.api.history.v1.UpsertWorkflowSearchAttributesEventAttributes upsert_workflow_search_attributes_event_attributes = 45;
    • hasWorkflowExecutionUpdateAcceptedEventAttributes

      boolean hasWorkflowExecutionUpdateAcceptedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateAcceptedEventAttributes workflow_execution_update_accepted_event_attributes = 46;
      Returns:
      Whether the workflowExecutionUpdateAcceptedEventAttributes field is set.
    • getWorkflowExecutionUpdateAcceptedEventAttributes

      WorkflowExecutionUpdateAcceptedEventAttributes getWorkflowExecutionUpdateAcceptedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateAcceptedEventAttributes workflow_execution_update_accepted_event_attributes = 46;
      Returns:
      The workflowExecutionUpdateAcceptedEventAttributes.
    • getWorkflowExecutionUpdateAcceptedEventAttributesOrBuilder

      WorkflowExecutionUpdateAcceptedEventAttributesOrBuilder getWorkflowExecutionUpdateAcceptedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionUpdateAcceptedEventAttributes workflow_execution_update_accepted_event_attributes = 46;
    • hasWorkflowExecutionUpdateRejectedEventAttributes

      boolean hasWorkflowExecutionUpdateRejectedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateRejectedEventAttributes workflow_execution_update_rejected_event_attributes = 47;
      Returns:
      Whether the workflowExecutionUpdateRejectedEventAttributes field is set.
    • getWorkflowExecutionUpdateRejectedEventAttributes

      WorkflowExecutionUpdateRejectedEventAttributes getWorkflowExecutionUpdateRejectedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateRejectedEventAttributes workflow_execution_update_rejected_event_attributes = 47;
      Returns:
      The workflowExecutionUpdateRejectedEventAttributes.
    • getWorkflowExecutionUpdateRejectedEventAttributesOrBuilder

      WorkflowExecutionUpdateRejectedEventAttributesOrBuilder getWorkflowExecutionUpdateRejectedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionUpdateRejectedEventAttributes workflow_execution_update_rejected_event_attributes = 47;
    • hasWorkflowExecutionUpdateCompletedEventAttributes

      boolean hasWorkflowExecutionUpdateCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateCompletedEventAttributes workflow_execution_update_completed_event_attributes = 48;
      Returns:
      Whether the workflowExecutionUpdateCompletedEventAttributes field is set.
    • getWorkflowExecutionUpdateCompletedEventAttributes

      WorkflowExecutionUpdateCompletedEventAttributes getWorkflowExecutionUpdateCompletedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateCompletedEventAttributes workflow_execution_update_completed_event_attributes = 48;
      Returns:
      The workflowExecutionUpdateCompletedEventAttributes.
    • getWorkflowExecutionUpdateCompletedEventAttributesOrBuilder

      WorkflowExecutionUpdateCompletedEventAttributesOrBuilder getWorkflowExecutionUpdateCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionUpdateCompletedEventAttributes workflow_execution_update_completed_event_attributes = 48;
    • hasWorkflowPropertiesModifiedExternallyEventAttributes

      boolean hasWorkflowPropertiesModifiedExternallyEventAttributes()
      .temporal.api.history.v1.WorkflowPropertiesModifiedExternallyEventAttributes workflow_properties_modified_externally_event_attributes = 49;
      Returns:
      Whether the workflowPropertiesModifiedExternallyEventAttributes field is set.
    • getWorkflowPropertiesModifiedExternallyEventAttributes

      WorkflowPropertiesModifiedExternallyEventAttributes getWorkflowPropertiesModifiedExternallyEventAttributes()
      .temporal.api.history.v1.WorkflowPropertiesModifiedExternallyEventAttributes workflow_properties_modified_externally_event_attributes = 49;
      Returns:
      The workflowPropertiesModifiedExternallyEventAttributes.
    • getWorkflowPropertiesModifiedExternallyEventAttributesOrBuilder

      WorkflowPropertiesModifiedExternallyEventAttributesOrBuilder getWorkflowPropertiesModifiedExternallyEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowPropertiesModifiedExternallyEventAttributes workflow_properties_modified_externally_event_attributes = 49;
    • hasActivityPropertiesModifiedExternallyEventAttributes

      boolean hasActivityPropertiesModifiedExternallyEventAttributes()
      .temporal.api.history.v1.ActivityPropertiesModifiedExternallyEventAttributes activity_properties_modified_externally_event_attributes = 50;
      Returns:
      Whether the activityPropertiesModifiedExternallyEventAttributes field is set.
    • getActivityPropertiesModifiedExternallyEventAttributes

      ActivityPropertiesModifiedExternallyEventAttributes getActivityPropertiesModifiedExternallyEventAttributes()
      .temporal.api.history.v1.ActivityPropertiesModifiedExternallyEventAttributes activity_properties_modified_externally_event_attributes = 50;
      Returns:
      The activityPropertiesModifiedExternallyEventAttributes.
    • getActivityPropertiesModifiedExternallyEventAttributesOrBuilder

      ActivityPropertiesModifiedExternallyEventAttributesOrBuilder getActivityPropertiesModifiedExternallyEventAttributesOrBuilder()
      .temporal.api.history.v1.ActivityPropertiesModifiedExternallyEventAttributes activity_properties_modified_externally_event_attributes = 50;
    • hasWorkflowPropertiesModifiedEventAttributes

      boolean hasWorkflowPropertiesModifiedEventAttributes()
      .temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes workflow_properties_modified_event_attributes = 51;
      Returns:
      Whether the workflowPropertiesModifiedEventAttributes field is set.
    • getWorkflowPropertiesModifiedEventAttributes

      WorkflowPropertiesModifiedEventAttributes getWorkflowPropertiesModifiedEventAttributes()
      .temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes workflow_properties_modified_event_attributes = 51;
      Returns:
      The workflowPropertiesModifiedEventAttributes.
    • getWorkflowPropertiesModifiedEventAttributesOrBuilder

      WorkflowPropertiesModifiedEventAttributesOrBuilder getWorkflowPropertiesModifiedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowPropertiesModifiedEventAttributes workflow_properties_modified_event_attributes = 51;
    • hasWorkflowExecutionUpdateAdmittedEventAttributes

      boolean hasWorkflowExecutionUpdateAdmittedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateAdmittedEventAttributes workflow_execution_update_admitted_event_attributes = 52;
      Returns:
      Whether the workflowExecutionUpdateAdmittedEventAttributes field is set.
    • getWorkflowExecutionUpdateAdmittedEventAttributes

      WorkflowExecutionUpdateAdmittedEventAttributes getWorkflowExecutionUpdateAdmittedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUpdateAdmittedEventAttributes workflow_execution_update_admitted_event_attributes = 52;
      Returns:
      The workflowExecutionUpdateAdmittedEventAttributes.
    • getWorkflowExecutionUpdateAdmittedEventAttributesOrBuilder

      WorkflowExecutionUpdateAdmittedEventAttributesOrBuilder getWorkflowExecutionUpdateAdmittedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionUpdateAdmittedEventAttributes workflow_execution_update_admitted_event_attributes = 52;
    • hasNexusOperationScheduledEventAttributes

      boolean hasNexusOperationScheduledEventAttributes()
      .temporal.api.history.v1.NexusOperationScheduledEventAttributes nexus_operation_scheduled_event_attributes = 53;
      Returns:
      Whether the nexusOperationScheduledEventAttributes field is set.
    • getNexusOperationScheduledEventAttributes

      NexusOperationScheduledEventAttributes getNexusOperationScheduledEventAttributes()
      .temporal.api.history.v1.NexusOperationScheduledEventAttributes nexus_operation_scheduled_event_attributes = 53;
      Returns:
      The nexusOperationScheduledEventAttributes.
    • getNexusOperationScheduledEventAttributesOrBuilder

      NexusOperationScheduledEventAttributesOrBuilder getNexusOperationScheduledEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationScheduledEventAttributes nexus_operation_scheduled_event_attributes = 53;
    • hasNexusOperationStartedEventAttributes

      boolean hasNexusOperationStartedEventAttributes()
      .temporal.api.history.v1.NexusOperationStartedEventAttributes nexus_operation_started_event_attributes = 54;
      Returns:
      Whether the nexusOperationStartedEventAttributes field is set.
    • getNexusOperationStartedEventAttributes

      NexusOperationStartedEventAttributes getNexusOperationStartedEventAttributes()
      .temporal.api.history.v1.NexusOperationStartedEventAttributes nexus_operation_started_event_attributes = 54;
      Returns:
      The nexusOperationStartedEventAttributes.
    • getNexusOperationStartedEventAttributesOrBuilder

      NexusOperationStartedEventAttributesOrBuilder getNexusOperationStartedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationStartedEventAttributes nexus_operation_started_event_attributes = 54;
    • hasNexusOperationCompletedEventAttributes

      boolean hasNexusOperationCompletedEventAttributes()
      .temporal.api.history.v1.NexusOperationCompletedEventAttributes nexus_operation_completed_event_attributes = 55;
      Returns:
      Whether the nexusOperationCompletedEventAttributes field is set.
    • getNexusOperationCompletedEventAttributes

      NexusOperationCompletedEventAttributes getNexusOperationCompletedEventAttributes()
      .temporal.api.history.v1.NexusOperationCompletedEventAttributes nexus_operation_completed_event_attributes = 55;
      Returns:
      The nexusOperationCompletedEventAttributes.
    • getNexusOperationCompletedEventAttributesOrBuilder

      NexusOperationCompletedEventAttributesOrBuilder getNexusOperationCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationCompletedEventAttributes nexus_operation_completed_event_attributes = 55;
    • hasNexusOperationFailedEventAttributes

      boolean hasNexusOperationFailedEventAttributes()
      .temporal.api.history.v1.NexusOperationFailedEventAttributes nexus_operation_failed_event_attributes = 56;
      Returns:
      Whether the nexusOperationFailedEventAttributes field is set.
    • getNexusOperationFailedEventAttributes

      NexusOperationFailedEventAttributes getNexusOperationFailedEventAttributes()
      .temporal.api.history.v1.NexusOperationFailedEventAttributes nexus_operation_failed_event_attributes = 56;
      Returns:
      The nexusOperationFailedEventAttributes.
    • getNexusOperationFailedEventAttributesOrBuilder

      NexusOperationFailedEventAttributesOrBuilder getNexusOperationFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationFailedEventAttributes nexus_operation_failed_event_attributes = 56;
    • hasNexusOperationCanceledEventAttributes

      boolean hasNexusOperationCanceledEventAttributes()
      .temporal.api.history.v1.NexusOperationCanceledEventAttributes nexus_operation_canceled_event_attributes = 57;
      Returns:
      Whether the nexusOperationCanceledEventAttributes field is set.
    • getNexusOperationCanceledEventAttributes

      NexusOperationCanceledEventAttributes getNexusOperationCanceledEventAttributes()
      .temporal.api.history.v1.NexusOperationCanceledEventAttributes nexus_operation_canceled_event_attributes = 57;
      Returns:
      The nexusOperationCanceledEventAttributes.
    • getNexusOperationCanceledEventAttributesOrBuilder

      NexusOperationCanceledEventAttributesOrBuilder getNexusOperationCanceledEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationCanceledEventAttributes nexus_operation_canceled_event_attributes = 57;
    • hasNexusOperationTimedOutEventAttributes

      boolean hasNexusOperationTimedOutEventAttributes()
      .temporal.api.history.v1.NexusOperationTimedOutEventAttributes nexus_operation_timed_out_event_attributes = 58;
      Returns:
      Whether the nexusOperationTimedOutEventAttributes field is set.
    • getNexusOperationTimedOutEventAttributes

      NexusOperationTimedOutEventAttributes getNexusOperationTimedOutEventAttributes()
      .temporal.api.history.v1.NexusOperationTimedOutEventAttributes nexus_operation_timed_out_event_attributes = 58;
      Returns:
      The nexusOperationTimedOutEventAttributes.
    • getNexusOperationTimedOutEventAttributesOrBuilder

      NexusOperationTimedOutEventAttributesOrBuilder getNexusOperationTimedOutEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationTimedOutEventAttributes nexus_operation_timed_out_event_attributes = 58;
    • hasNexusOperationCancelRequestedEventAttributes

      boolean hasNexusOperationCancelRequestedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestedEventAttributes nexus_operation_cancel_requested_event_attributes = 59;
      Returns:
      Whether the nexusOperationCancelRequestedEventAttributes field is set.
    • getNexusOperationCancelRequestedEventAttributes

      NexusOperationCancelRequestedEventAttributes getNexusOperationCancelRequestedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestedEventAttributes nexus_operation_cancel_requested_event_attributes = 59;
      Returns:
      The nexusOperationCancelRequestedEventAttributes.
    • getNexusOperationCancelRequestedEventAttributesOrBuilder

      NexusOperationCancelRequestedEventAttributesOrBuilder getNexusOperationCancelRequestedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationCancelRequestedEventAttributes nexus_operation_cancel_requested_event_attributes = 59;
    • hasWorkflowExecutionOptionsUpdatedEventAttributes

      boolean hasWorkflowExecutionOptionsUpdatedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionOptionsUpdatedEventAttributes workflow_execution_options_updated_event_attributes = 60;
      Returns:
      Whether the workflowExecutionOptionsUpdatedEventAttributes field is set.
    • getWorkflowExecutionOptionsUpdatedEventAttributes

      WorkflowExecutionOptionsUpdatedEventAttributes getWorkflowExecutionOptionsUpdatedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionOptionsUpdatedEventAttributes workflow_execution_options_updated_event_attributes = 60;
      Returns:
      The workflowExecutionOptionsUpdatedEventAttributes.
    • getWorkflowExecutionOptionsUpdatedEventAttributesOrBuilder

      WorkflowExecutionOptionsUpdatedEventAttributesOrBuilder getWorkflowExecutionOptionsUpdatedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionOptionsUpdatedEventAttributes workflow_execution_options_updated_event_attributes = 60;
    • hasNexusOperationCancelRequestCompletedEventAttributes

      boolean hasNexusOperationCancelRequestCompletedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestCompletedEventAttributes nexus_operation_cancel_request_completed_event_attributes = 61;
      Returns:
      Whether the nexusOperationCancelRequestCompletedEventAttributes field is set.
    • getNexusOperationCancelRequestCompletedEventAttributes

      NexusOperationCancelRequestCompletedEventAttributes getNexusOperationCancelRequestCompletedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestCompletedEventAttributes nexus_operation_cancel_request_completed_event_attributes = 61;
      Returns:
      The nexusOperationCancelRequestCompletedEventAttributes.
    • getNexusOperationCancelRequestCompletedEventAttributesOrBuilder

      NexusOperationCancelRequestCompletedEventAttributesOrBuilder getNexusOperationCancelRequestCompletedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationCancelRequestCompletedEventAttributes nexus_operation_cancel_request_completed_event_attributes = 61;
    • hasNexusOperationCancelRequestFailedEventAttributes

      boolean hasNexusOperationCancelRequestFailedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestFailedEventAttributes nexus_operation_cancel_request_failed_event_attributes = 62;
      Returns:
      Whether the nexusOperationCancelRequestFailedEventAttributes field is set.
    • getNexusOperationCancelRequestFailedEventAttributes

      NexusOperationCancelRequestFailedEventAttributes getNexusOperationCancelRequestFailedEventAttributes()
      .temporal.api.history.v1.NexusOperationCancelRequestFailedEventAttributes nexus_operation_cancel_request_failed_event_attributes = 62;
      Returns:
      The nexusOperationCancelRequestFailedEventAttributes.
    • getNexusOperationCancelRequestFailedEventAttributesOrBuilder

      NexusOperationCancelRequestFailedEventAttributesOrBuilder getNexusOperationCancelRequestFailedEventAttributesOrBuilder()
      .temporal.api.history.v1.NexusOperationCancelRequestFailedEventAttributes nexus_operation_cancel_request_failed_event_attributes = 62;
    • hasWorkflowExecutionPausedEventAttributes

      boolean hasWorkflowExecutionPausedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionPausedEventAttributes workflow_execution_paused_event_attributes = 63;
      Returns:
      Whether the workflowExecutionPausedEventAttributes field is set.
    • getWorkflowExecutionPausedEventAttributes

      WorkflowExecutionPausedEventAttributes getWorkflowExecutionPausedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionPausedEventAttributes workflow_execution_paused_event_attributes = 63;
      Returns:
      The workflowExecutionPausedEventAttributes.
    • getWorkflowExecutionPausedEventAttributesOrBuilder

      WorkflowExecutionPausedEventAttributesOrBuilder getWorkflowExecutionPausedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionPausedEventAttributes workflow_execution_paused_event_attributes = 63;
    • hasWorkflowExecutionUnpausedEventAttributes

      boolean hasWorkflowExecutionUnpausedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUnpausedEventAttributes workflow_execution_unpaused_event_attributes = 64;
      Returns:
      Whether the workflowExecutionUnpausedEventAttributes field is set.
    • getWorkflowExecutionUnpausedEventAttributes

      WorkflowExecutionUnpausedEventAttributes getWorkflowExecutionUnpausedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionUnpausedEventAttributes workflow_execution_unpaused_event_attributes = 64;
      Returns:
      The workflowExecutionUnpausedEventAttributes.
    • getWorkflowExecutionUnpausedEventAttributesOrBuilder

      WorkflowExecutionUnpausedEventAttributesOrBuilder getWorkflowExecutionUnpausedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionUnpausedEventAttributes workflow_execution_unpaused_event_attributes = 64;
    • hasWorkflowExecutionTimeSkippingTransitionedEventAttributes

      boolean hasWorkflowExecutionTimeSkippingTransitionedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTimeSkippingTransitionedEventAttributes workflow_execution_time_skipping_transitioned_event_attributes = 65;
      Returns:
      Whether the workflowExecutionTimeSkippingTransitionedEventAttributes field is set.
    • getWorkflowExecutionTimeSkippingTransitionedEventAttributes

      WorkflowExecutionTimeSkippingTransitionedEventAttributes getWorkflowExecutionTimeSkippingTransitionedEventAttributes()
      .temporal.api.history.v1.WorkflowExecutionTimeSkippingTransitionedEventAttributes workflow_execution_time_skipping_transitioned_event_attributes = 65;
      Returns:
      The workflowExecutionTimeSkippingTransitionedEventAttributes.
    • getWorkflowExecutionTimeSkippingTransitionedEventAttributesOrBuilder

      WorkflowExecutionTimeSkippingTransitionedEventAttributesOrBuilder getWorkflowExecutionTimeSkippingTransitionedEventAttributesOrBuilder()
      .temporal.api.history.v1.WorkflowExecutionTimeSkippingTransitionedEventAttributes workflow_execution_time_skipping_transitioned_event_attributes = 65;
    • getAttributesCase

      HistoryEvent.AttributesCase getAttributesCase()