Class WorkflowUpdateStartOptions
- Namespace
- Temporalio.Client
- Assembly
- Temporalio.dll
Options for starting an update on a WorkflowHandle.
public class WorkflowUpdateStartOptions : WorkflowUpdateOptions, ICloneable
- Inheritance
-
WorkflowUpdateStartOptions
- Implements
- Inherited Members
Remarks
WARNING: Workflow update is experimental and APIs may change.
Constructors
WorkflowUpdateStartOptions()
Initializes a new instance of the WorkflowUpdateStartOptions class.
public WorkflowUpdateStartOptions()
WorkflowUpdateStartOptions(string, WorkflowUpdateStage)
Initializes a new instance of the WorkflowUpdateStartOptions class.
public WorkflowUpdateStartOptions(string id, WorkflowUpdateStage waitForStage)
Parameters
id
stringUpdate ID.
waitForStage
WorkflowUpdateStageStage to wait for.
WorkflowUpdateStartOptions(WorkflowUpdateStage)
Initializes a new instance of the WorkflowUpdateStartOptions class.
public WorkflowUpdateStartOptions(WorkflowUpdateStage waitForStage)
Parameters
waitForStage
WorkflowUpdateStageStage to wait for.
Properties
WaitForStage
Gets or sets the stage to wait for on start. This is required and cannot be set to
None
or Admitted
at this time.
public WorkflowUpdateStage WaitForStage { get; set; }