Table of Contents

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 DateTime

Scheduled time of the action including jitter.

StartedAt DateTime

When the action actually started.

Action ScheduleActionExecution

Action that took place.

Properties

Action

Action that took place.

public ScheduleActionExecution Action { get; init; }

Property Value

ScheduleActionExecution

ScheduledAt

Scheduled time of the action including jitter.

public DateTime ScheduledAt { get; init; }

Property Value

DateTime

StartedAt

When the action actually started.

public DateTime StartedAt { get; init; }

Property Value

DateTime