Table of Contents

Class ScheduleBackfill

Namespace
Temporalio.Client.Schedules
Assembly
Temporalio.dll

Time period and policy for actions taken as if the time passed right now.

public record ScheduleBackfill : IEquatable<ScheduleBackfill>
Inheritance
ScheduleBackfill
Implements
Inherited Members

Constructors

ScheduleBackfill(DateTime, DateTime, ScheduleOverlapPolicy)

Time period and policy for actions taken as if the time passed right now.

public ScheduleBackfill(DateTime StartAt, DateTime EndAt, ScheduleOverlapPolicy Overlap = ScheduleOverlapPolicy.Unspecified)

Parameters

StartAt DateTime

Start of the range to evaluate the schedule in. This is exclusive.

EndAt DateTime

End of the range to evaluate the schedule in. This is inclusive.

Overlap ScheduleOverlapPolicy

Overlap policy.

Properties

EndAt

End of the range to evaluate the schedule in. This is inclusive.

public DateTime EndAt { get; init; }

Property Value

DateTime

Overlap

Overlap policy.

public ScheduleOverlapPolicy Overlap { get; init; }

Property Value

ScheduleOverlapPolicy

StartAt

Start of the range to evaluate the schedule in. This is exclusive.

public DateTime StartAt { get; init; }

Property Value

DateTime