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
ScheduledAtDateTimeScheduled time of the action including jitter.
StartedAtDateTimeWhen the action actually started.
ActionScheduleActionExecutionAction 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; }