Table of Contents

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

bool

Note

Gets the human readable message for the schedule.

public string? Note { get; init; }

Property Value

string

Paused

Gets a value indicating whether this schedule is paused.

public bool Paused { get; init; }

Property Value

bool

RemainingActions

Gets the actions remaining on this schedule. Once this number hits 0, no further actions are scheduled automatically.

public long RemainingActions { get; init; }

Property Value

long