Package io.temporal.api.schedule.v1
Interface BackfillRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
BackfillRequest,BackfillRequest.Builder
@Generated(value="protoc", comments="annotations:BackfillRequestOrBuilder.java.pb.meta") public interface BackfillRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.TimestampgetEndTime().google.protobuf.Timestamp end_time = 2;com.google.protobuf.TimestampOrBuildergetEndTimeOrBuilder().google.protobuf.Timestamp end_time = 2;ScheduleOverlapPolicygetOverlapPolicy()If set, override overlap policy for this request.intgetOverlapPolicyValue()If set, override overlap policy for this request.com.google.protobuf.TimestampgetStartTime()Time range to evaluate schedule in.com.google.protobuf.TimestampOrBuildergetStartTimeOrBuilder()Time range to evaluate schedule in.booleanhasEndTime().google.protobuf.Timestamp end_time = 2;booleanhasStartTime()Time range to evaluate schedule in.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasStartTime
boolean hasStartTime()
Time range to evaluate schedule in. Currently, this time range is exclusive on start_time and inclusive on end_time. (This is admittedly counterintuitive and it may change in the future, so to be safe, use a start time strictly before a scheduled time.) Also note that an action nominally scheduled in the interval but with jitter that pushes it after end_time will not be included.
.google.protobuf.Timestamp start_time = 1;- Returns:
- Whether the startTime field is set.
-
getStartTime
com.google.protobuf.Timestamp getStartTime()
Time range to evaluate schedule in. Currently, this time range is exclusive on start_time and inclusive on end_time. (This is admittedly counterintuitive and it may change in the future, so to be safe, use a start time strictly before a scheduled time.) Also note that an action nominally scheduled in the interval but with jitter that pushes it after end_time will not be included.
.google.protobuf.Timestamp start_time = 1;- Returns:
- The startTime.
-
getStartTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getStartTimeOrBuilder()
Time range to evaluate schedule in. Currently, this time range is exclusive on start_time and inclusive on end_time. (This is admittedly counterintuitive and it may change in the future, so to be safe, use a start time strictly before a scheduled time.) Also note that an action nominally scheduled in the interval but with jitter that pushes it after end_time will not be included.
.google.protobuf.Timestamp start_time = 1;
-
hasEndTime
boolean hasEndTime()
.google.protobuf.Timestamp end_time = 2;- Returns:
- Whether the endTime field is set.
-
getEndTime
com.google.protobuf.Timestamp getEndTime()
.google.protobuf.Timestamp end_time = 2;- Returns:
- The endTime.
-
getEndTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getEndTimeOrBuilder()
.google.protobuf.Timestamp end_time = 2;
-
getOverlapPolicyValue
int getOverlapPolicyValue()
If set, override overlap policy for this request.
.temporal.api.enums.v1.ScheduleOverlapPolicy overlap_policy = 3;- Returns:
- The enum numeric value on the wire for overlapPolicy.
-
getOverlapPolicy
ScheduleOverlapPolicy getOverlapPolicy()
If set, override overlap policy for this request.
.temporal.api.enums.v1.ScheduleOverlapPolicy overlap_policy = 3;- Returns:
- The overlapPolicy.
-
-