Enum VersioningBehavior
- Namespace
- Temporalio.Api.Enums.V1
- Assembly
- Temporalio.dll
public enum VersioningBehavior
Fields
[OriginalName("VERSIONING_BEHAVIOR_AUTO_UPGRADE")] AutoUpgrade = 2
Workflow will automatically move to the current deployment of its task queue when the next workflow task is dispatched. Activities of
AUTO_UPGRADE
workflows are sent to the current deployment of the workflow execution based on the last completed workflow task. Exception to this would be when the activity task queue workers are not present in the workflow's deployment, in which case the activity will be sent to the current deployment of its own task queue. Workflows stuck on a backlogged activity will still auto-upgrade if the default deployment of their task queue changes, without having to wait for the backlogged activity to complete on the old deployment.[OriginalName("VERSIONING_BEHAVIOR_PINNED")] Pinned = 1
Workflow will be pinned to the current deployment until completion. Can be overridden explicitly via
UpdateWorkflowExecutionOptions
API. Activities ofPINNED
workflows are sent to the same deployment. Exception to this would be when the activity task queue workers are not present in the workflows deployment, in which case the activity will be sent to the current deployment of its own task queue.[OriginalName("VERSIONING_BEHAVIOR_UNSPECIFIED")] Unspecified = 0
Workflow execution is unversioned. This is the legacy behavior. An unversioned workflow's task may go to any unversioned worker who is polling for the task queue.