Table of Contents

Class UpdateScheduleInput

Namespace
Temporalio.Client.Interceptors
Assembly
Temporalio.dll
public record UpdateScheduleInput : IEquatable<UpdateScheduleInput>
Inheritance
UpdateScheduleInput
Implements
Inherited Members

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

UpdateScheduleInput(string, Func<ScheduleUpdateInput, Task<ScheduleUpdate?>>, RpcOptions?)

public UpdateScheduleInput(string Id, Func<ScheduleUpdateInput, Task<ScheduleUpdate?>> Updater, RpcOptions? RpcOptions)

Parameters

Id string

Schedule ID.

Updater Func<ScheduleUpdateInput, Task<ScheduleUpdate>>

Updater.

RpcOptions RpcOptions

RPC options.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

Id

Schedule ID.

public string Id { get; init; }

Property Value

string

RpcOptions

RPC options.

public RpcOptions? RpcOptions { get; init; }

Property Value

RpcOptions

Updater

Updater.

public Func<ScheduleUpdateInput, Task<ScheduleUpdate?>> Updater { get; init; }

Property Value

Func<ScheduleUpdateInput, Task<ScheduleUpdate>>