Table of Contents

Class ScheduleOptions

Namespace
Temporalio.Client.Schedules
Assembly
Temporalio.dll

Options for creating a schedule.

public class ScheduleOptions : ICloneable
Inheritance
ScheduleOptions
Implements
Inherited Members

Properties

Backfills

Gets or sets the time periods to take actions on as if that time passed right now.

public IReadOnlyCollection<ScheduleBackfill> Backfills { get; set; }

Property Value

IReadOnlyCollection<ScheduleBackfill>

Memo

Gets or sets the memo for the schedule. Values for the memo cannot be null.

public IReadOnlyDictionary<string, object>? Memo { get; set; }

Property Value

IReadOnlyDictionary<string, object>

Rpc

Gets or sets RPC options for creating the schedule.

public RpcOptions? Rpc { get; set; }

Property Value

RpcOptions

TriggerImmediately

Gets or sets a value indicating whether the schedule will be triggered immediately upon create.

public bool TriggerImmediately { get; set; }

Property Value

bool

TypedSearchAttributes

Gets or sets the search attributes for the schedule.

public SearchAttributeCollection? TypedSearchAttributes { get; set; }

Property Value

SearchAttributeCollection

Methods

Clone()

Create a shallow copy of these options.

public virtual object Clone()

Returns

object

A shallow copy of these options and any transitive options fields.