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 TypeMethodDescriptionbooleanWill be set to true if the activity is paused.booleanWill be set to true if the activity was reset.booleanWill be set to true if the activity has been asked to cancel itself.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods 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.
-