Interface RecordActivityTaskHeartbeatResponseOrBuilder

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

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

    Modifier and Type
    Method
    Description
    boolean
    Will be set to true if the activity is paused.
    boolean
    Will be set to true if the activity was reset.
    boolean
    Will be set to true if the activity has been asked to cancel itself.

    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 Details

    • getCancelRequested

      boolean getCancelRequested()
       Will be set to true if the activity has been asked to cancel itself. The SDK should then
       notify the activity of cancellation if it is still running.
       
      bool cancel_requested = 1;
      Returns:
      The cancelRequested.
    • getActivityPaused

      boolean getActivityPaused()
       Will be set to true if the activity is paused.
       
      bool activity_paused = 2;
      Returns:
      The activityPaused.
    • getActivityReset

      boolean getActivityReset()
       Will be set to true if the activity was reset.
       Applies only to the current run.
       
      bool activity_reset = 3;
      Returns:
      The activityReset.