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.StringgetActivityId()ID of the activity we're updating.com.google.protobuf.ByteStringgetActivityIdBytes()ID of the activity we're updating.java.lang.StringgetIdentity()The identity of the client who initiated this request.com.google.protobuf.ByteStringgetIdentityBytes()The identity of the client who initiated this request.java.lang.StringgetNamespace()Namespace of the workflow which scheduled this activity.com.google.protobuf.ByteStringgetNamespaceBytes()Namespace of the workflow which scheduled this activity.booleangetNoWait()Indicates that activity should be scheduled immediately.java.lang.StringgetRequestId()Used to de-dupe requests.com.google.protobuf.ByteStringgetRequestIdBytes()Used to de-dupe requests.booleangetResetHeartbeat()Indicates that activity should reset heartbeat details.java.lang.StringgetRunId()Run ID of the workflow which scheduled this activity.com.google.protobuf.ByteStringgetRunIdBytes()Run ID of the workflow which scheduled this activity.java.lang.StringgetWorkflowId()ID of the workflow which scheduled this activity.com.google.protobuf.ByteStringgetWorkflowIdBytes()ID of the workflow which scheduled this activity.-
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.
-
-