Table of Contents

Class WorkflowUpdateOptions

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Options for starting an update on a WorkflowHandle.

public class WorkflowUpdateOptions : ICloneable
Inheritance
WorkflowUpdateOptions
Implements
Inherited Members

Remarks

WARNING: Workflow update is experimental and APIs may change.

Properties

Rpc

Gets or sets RPC options for starting the workflow.

public RpcOptions? Rpc { get; set; }

Property Value

RpcOptions

UpdateID

Gets or sets the unique identifier for the update. This is optional and is defaulted to a GUID if not set. This must be unique within the scope of a workflow execution (i.e. namespace + workflow ID + run ID).

public string? UpdateID { get; set; }

Property Value

string

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.