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
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
Rpc
Gets or sets RPC options for creating the schedule.
public RpcOptions? Rpc { get; set; }
Property Value
TriggerImmediately
Gets or sets a value indicating whether the schedule will be triggered immediately upon create.
public bool TriggerImmediately { get; set; }
Property Value
TypedSearchAttributes
Gets or sets the search attributes for the schedule.
public SearchAttributeCollection? TypedSearchAttributes { get; set; }
Property Value
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.