Class ScheduleActionResult
- Namespace
- Temporalio.Client.Schedules
- Assembly
- Temporalio.dll
Information about when an action took place.
public record ScheduleActionResult : IEquatable<ScheduleActionResult>
- Inheritance
-
ScheduleActionResult
- Implements
- Inherited Members
Constructors
ScheduleActionResult(DateTime, DateTime, ScheduleActionExecution)
Information about when an action took place.
public ScheduleActionResult(DateTime ScheduledAt, DateTime StartedAt, ScheduleActionExecution Action)
Parameters
ScheduledAt
DateTimeScheduled time of the action including jitter.
StartedAt
DateTimeWhen the action actually started.
Action
ScheduleActionExecutionAction that took place.
Properties
Action
Action that took place.
public ScheduleActionExecution Action { get; init; }
Property Value
ScheduledAt
Scheduled time of the action including jitter.
public DateTime ScheduledAt { get; init; }
Property Value
StartedAt
When the action actually started.
public DateTime StartedAt { get; init; }