Package io.temporal.api.update.v1
Interface WaitPolicyOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
WaitPolicy,WaitPolicy.Builder
@Generated(value="protoc", comments="annotations:WaitPolicyOrBuilder.java.pb.meta") public interface WaitPolicyOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateWorkflowExecutionLifecycleStagegetLifecycleStage()Indicates the Update lifecycle stage that the Update must reach before API call is returned.intgetLifecycleStageValue()Indicates the Update lifecycle stage that the Update must reach before API call is returned.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getLifecycleStageValue
int getLifecycleStageValue()
Indicates the Update lifecycle stage that the Update must reach before API call is returned. NOTE: This field works together with API call timeout which is limited by server timeout (maximum wait time). If server timeout is expired before user specified timeout, API call returns even if specified stage is not reached.
.temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage lifecycle_stage = 1;- Returns:
- The enum numeric value on the wire for lifecycleStage.
-
getLifecycleStage
UpdateWorkflowExecutionLifecycleStage getLifecycleStage()
Indicates the Update lifecycle stage that the Update must reach before API call is returned. NOTE: This field works together with API call timeout which is limited by server timeout (maximum wait time). If server timeout is expired before user specified timeout, API call returns even if specified stage is not reached.
.temporal.api.enums.v1.UpdateWorkflowExecutionLifecycleStage lifecycle_stage = 1;- Returns:
- The lifecycleStage.
-
-