Interface RecordActivityTaskHeartbeatByIdResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RecordActivityTaskHeartbeatByIdResponse,RecordActivityTaskHeartbeatByIdResponse.Builder
@Generated(value="protoc", comments="annotations:RecordActivityTaskHeartbeatByIdResponseOrBuilder.java.pb.meta") public interface RecordActivityTaskHeartbeatByIdResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetActivityPaused()Will be set to true if the activity is paused.booleangetActivityReset()Will be set to true if the activity was reset.booleangetCancelRequested()Will be set to true if the activity has been asked to cancel itself.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
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.
-
-