Interface RequestIdInfoOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean getBuffered()
      Indicate if the request is still buffered.
      long getEventId()
      The event id of the history event generated by the request.
      EventType getEventType()
      The event type of the history event generated by the request.
      int getEventTypeValue()
      The event type of the history event generated by the request.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getEventTypeValue

        int getEventTypeValue()
         The event type of the history event generated by the request.
         
        .temporal.api.enums.v1.EventType event_type = 1;
        Returns:
        The enum numeric value on the wire for eventType.
      • getEventType

        EventType getEventType()
         The event type of the history event generated by the request.
         
        .temporal.api.enums.v1.EventType event_type = 1;
        Returns:
        The eventType.
      • getEventId

        long getEventId()
         The event id of the history event generated by the request. It's possible the event ID is not
         known (unflushed buffered event). In this case, the value will be zero or a negative value,
         representing an invalid ID.
         
        int64 event_id = 2;
        Returns:
        The eventId.
      • getBuffered

        boolean getBuffered()
         Indicate if the request is still buffered. If so, the event ID is not known and its value
         will be an invalid event ID.
         
        bool buffered = 3;
        Returns:
        The buffered.