Class ScheduleState
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
State of a schedule.
public record ScheduleState : IEquatable<ScheduleState>
- Inheritance
-
ScheduleState
- Implements
- Inherited Members
Properties
LimitedActions
Gets a value indicating whether, if true, remaining actions will be decremented for each action taken.
public bool LimitedActions { get; init; }
Property Value
Note
Gets the human readable message for the schedule.
public string? Note { get; init; }
Property Value
Paused
Gets a value indicating whether this schedule is paused.
public bool Paused { get; init; }
Property Value
RemainingActions
Gets the actions remaining on this schedule. Once this number hits 0, no further actions are scheduled automatically.
public long RemainingActions { get; init; }