Class SchedulePolicy
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
Policies of a schedule.
public record SchedulePolicy : IEquatable<SchedulePolicy>
- Inheritance
-
SchedulePolicy
- Implements
- Inherited Members
Properties
CatchupWindow
Gets the amount of time in the past to execute misseed actions after a Temporal server is unavailable.
public TimeSpan CatchupWindow { get; init; }
Property Value
Overlap
Gets the policy for what happens when an action is started while another is still running.
public ScheduleOverlapPolicy Overlap { get; init; }
Property Value
PauseOnFailure
Gets a value indicating whether to pause the schedule if an action fails or times out.
public bool PauseOnFailure { get; init; }