Class ScheduleBackfill
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
Time period and policy for actions taken as if the time passed right now.
public record ScheduleBackfill : IEquatable<ScheduleBackfill>
- Inheritance
-
ScheduleBackfill
- Implements
- Inherited Members
Constructors
ScheduleBackfill(DateTime, DateTime, ScheduleOverlapPolicy)
Time period and policy for actions taken as if the time passed right now.
public ScheduleBackfill(DateTime StartAt, DateTime EndAt, ScheduleOverlapPolicy Overlap = ScheduleOverlapPolicy.Unspecified)
Parameters
StartAt
DateTimeStart of the range to evaluate the schedule in. This is exclusive.
EndAt
DateTimeEnd of the range to evaluate the schedule in. This is inclusive.
Overlap
ScheduleOverlapPolicyOverlap policy.
Properties
EndAt
End of the range to evaluate the schedule in. This is inclusive.
public DateTime EndAt { get; init; }
Property Value
Overlap
Overlap policy.
public ScheduleOverlapPolicy Overlap { get; init; }
Property Value
StartAt
Start of the range to evaluate the schedule in. This is exclusive.
public DateTime StartAt { get; init; }