Package io.temporal.api.schedule.v1
Interface ScheduleActionResultOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ScheduleActionResult,ScheduleActionResult.Builder
@Generated(value="protoc", comments="annotations:ScheduleActionResultOrBuilder.java.pb.meta") public interface ScheduleActionResultOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimestampgetActualTime()Time that the action was taken (real time).TimestampOrBuildergetActualTimeOrBuilder()Time that the action was taken (real time).TimestampgetScheduleTime()Time that the action was taken (according to the schedule, including jitter).TimestampOrBuildergetScheduleTimeOrBuilder()Time that the action was taken (according to the schedule, including jitter).WorkflowExecutiongetStartWorkflowResult()If action was start_workflow:WorkflowExecutionOrBuildergetStartWorkflowResultOrBuilder()If action was start_workflow:booleanhasActualTime()Time that the action was taken (real time).booleanhasScheduleTime()Time that the action was taken (according to the schedule, including jitter).booleanhasStartWorkflowResult()If action was start_workflow:-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasScheduleTime
boolean hasScheduleTime()
Time that the action was taken (according to the schedule, including jitter).
.google.protobuf.Timestamp schedule_time = 1;- Returns:
- Whether the scheduleTime field is set.
-
getScheduleTime
Timestamp getScheduleTime()
Time that the action was taken (according to the schedule, including jitter).
.google.protobuf.Timestamp schedule_time = 1;- Returns:
- The scheduleTime.
-
getScheduleTimeOrBuilder
TimestampOrBuilder getScheduleTimeOrBuilder()
Time that the action was taken (according to the schedule, including jitter).
.google.protobuf.Timestamp schedule_time = 1;
-
hasActualTime
boolean hasActualTime()
Time that the action was taken (real time).
.google.protobuf.Timestamp actual_time = 2;- Returns:
- Whether the actualTime field is set.
-
getActualTime
Timestamp getActualTime()
Time that the action was taken (real time).
.google.protobuf.Timestamp actual_time = 2;- Returns:
- The actualTime.
-
getActualTimeOrBuilder
TimestampOrBuilder getActualTimeOrBuilder()
Time that the action was taken (real time).
.google.protobuf.Timestamp actual_time = 2;
-
hasStartWorkflowResult
boolean hasStartWorkflowResult()
If action was start_workflow:
.temporal.api.common.v1.WorkflowExecution start_workflow_result = 11;- Returns:
- Whether the startWorkflowResult field is set.
-
getStartWorkflowResult
WorkflowExecution getStartWorkflowResult()
If action was start_workflow:
.temporal.api.common.v1.WorkflowExecution start_workflow_result = 11;- Returns:
- The startWorkflowResult.
-
getStartWorkflowResultOrBuilder
WorkflowExecutionOrBuilder getStartWorkflowResultOrBuilder()
If action was start_workflow:
.temporal.api.common.v1.WorkflowExecution start_workflow_result = 11;
-
-