Class ScheduleListInfo
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
Information about a listed schedule.
public record ScheduleListInfo : IEquatable<ScheduleListInfo>
- Inheritance
-
ScheduleListInfo
- Implements
- Inherited Members
Constructors
ScheduleListInfo(IReadOnlyCollection<ScheduleActionResult>, IReadOnlyCollection<DateTime>)
Information about a listed schedule.
public ScheduleListInfo(IReadOnlyCollection<ScheduleActionResult> RecentActions, IReadOnlyCollection<DateTime> NextActionTimes)
Parameters
RecentActions
IReadOnlyCollection<ScheduleActionResult>Most recent actions, oldest first. This may be a smaller count than RecentActions.
NextActionTimes
IReadOnlyCollection<DateTime>Next scheduled action times. This may be a smaller count than NextActionTimes.
Properties
NextActionTimes
Next scheduled action times. This may be a smaller count than NextActionTimes.
public IReadOnlyCollection<DateTime> NextActionTimes { get; init; }
Property Value
RecentActions
Most recent actions, oldest first. This may be a smaller count than RecentActions.
public IReadOnlyCollection<ScheduleActionResult> RecentActions { get; init; }