Table of Contents

Enum WorkflowUpdateStage

Namespace
Temporalio.Client
Assembly
Temporalio.dll

Stage that an update can reach. This is used when starting an update to set the stage to wait for before returning.

public enum WorkflowUpdateStage

Fields

Accepted = 2

Accepted stage. This stage is reached when a workflow has received the update and either accepted (i.e. it has passed validation) or rejected it.

Admitted = 1

Admitted stage. This stage is reached when the server receives the update to process. This is currently an invalid value on start.

Completed = 3

Completed stage. This stage is reached when a workflow has completed processing the update with either a success or failure.

None = 0

Unset stage. This is an invalid value on start.