Interface ResetActivityByIdRequestOrBuilder

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

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

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getActivityId()
      ID of the activity we're updating.
      com.google.protobuf.ByteString getActivityIdBytes()
      ID of the activity we're updating.
      java.lang.String getIdentity()
      The identity of the client who initiated this request.
      com.google.protobuf.ByteString getIdentityBytes()
      The identity of the client who initiated this request.
      java.lang.String getNamespace()
      Namespace of the workflow which scheduled this activity.
      com.google.protobuf.ByteString getNamespaceBytes()
      Namespace of the workflow which scheduled this activity.
      boolean getNoWait()
      Indicates that activity should be scheduled immediately.
      java.lang.String getRequestId()
      Used to de-dupe requests.
      com.google.protobuf.ByteString getRequestIdBytes()
      Used to de-dupe requests.
      boolean getResetHeartbeat()
      Indicates that activity should reset heartbeat details.
      java.lang.String getRunId()
      Run ID of the workflow which scheduled this activity.
      com.google.protobuf.ByteString getRunIdBytes()
      Run ID of the workflow which scheduled this activity.
      java.lang.String getWorkflowId()
      ID of the workflow which scheduled this activity.
      com.google.protobuf.ByteString getWorkflowIdBytes()
      ID of the workflow which scheduled this activity.
      • 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

      • getNamespace

        java.lang.String getNamespace()
         Namespace of the workflow which scheduled this activity.
         
        string namespace = 1;
        Returns:
        The namespace.
      • getNamespaceBytes

        com.google.protobuf.ByteString getNamespaceBytes()
         Namespace of the workflow which scheduled this activity.
         
        string namespace = 1;
        Returns:
        The bytes for namespace.
      • getWorkflowId

        java.lang.String getWorkflowId()
         ID of the workflow which scheduled this activity.
         
        string workflow_id = 2;
        Returns:
        The workflowId.
      • getWorkflowIdBytes

        com.google.protobuf.ByteString getWorkflowIdBytes()
         ID of the workflow which scheduled this activity.
         
        string workflow_id = 2;
        Returns:
        The bytes for workflowId.
      • getRunId

        java.lang.String getRunId()
         Run ID of the workflow which scheduled this activity.
         If empty - latest workflow is used.
         
        string run_id = 3;
        Returns:
        The runId.
      • getRunIdBytes

        com.google.protobuf.ByteString getRunIdBytes()
         Run ID of the workflow which scheduled this activity.
         If empty - latest workflow is used.
         
        string run_id = 3;
        Returns:
        The bytes for runId.
      • getActivityId

        java.lang.String getActivityId()
         ID of the activity we're updating.
         
        string activity_id = 4;
        Returns:
        The activityId.
      • getActivityIdBytes

        com.google.protobuf.ByteString getActivityIdBytes()
         ID of the activity we're updating.
         
        string activity_id = 4;
        Returns:
        The bytes for activityId.
      • getIdentity

        java.lang.String getIdentity()
         The identity of the client who initiated this request.
         
        string identity = 5;
        Returns:
        The identity.
      • getIdentityBytes

        com.google.protobuf.ByteString getIdentityBytes()
         The identity of the client who initiated this request.
         
        string identity = 5;
        Returns:
        The bytes for identity.
      • getRequestId

        java.lang.String getRequestId()
         Used to de-dupe requests.
         
        string request_id = 6;
        Returns:
        The requestId.
      • getRequestIdBytes

        com.google.protobuf.ByteString getRequestIdBytes()
         Used to de-dupe requests.
         
        string request_id = 6;
        Returns:
        The bytes for requestId.
      • getNoWait

        boolean getNoWait()
         Indicates that activity should be scheduled immediately.
         If this flag doesn't set, and activity currently running - temporal will wait until activity is completed.
         
        bool no_wait = 7;
        Returns:
        The noWait.
      • getResetHeartbeat

        boolean getResetHeartbeat()
         Indicates that activity should reset heartbeat details.
         This flag will be applied only to the new instance of the activity.
         
        bool reset_heartbeat = 8;
        Returns:
        The resetHeartbeat.