Table of Contents

Enum NexusOperationCancellationState

Namespace
Temporalio.Api.Enums.V1
Assembly
Temporalio.dll

State of a Nexus operation cancellation.

public enum NexusOperationCancellationState

Fields

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_BACKING_OFF")] BackingOff = 2

Cancellation request has failed with a retryable error and is backing off before the next attempt.

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_FAILED")] Failed = 4

Cancellation request failed with a non-retryable error.

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_SCHEDULED")] Scheduled = 1

Cancellation request is in the queue waiting to be executed or is currently executing.

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_SUCCEEDED")] Succeeded = 3

Cancellation request succeeded.

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_TIMED_OUT")] TimedOut = 5

The associated operation timed out - exceeded the user supplied schedule-to-close timeout.

[OriginalName("NEXUS_OPERATION_CANCELLATION_STATE_UNSPECIFIED")] Unspecified = 0

Default value, unspecified state.