You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk-core-protos/protos/local/temporal/sdk/core/nexus/nexus.proto
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -72,15 +72,15 @@ enum NexusTaskCancelReason {
72
72
73
73
// Controls at which point to report back to lang when a nexus operation is cancelled
74
74
enumNexusOperationCancellationType {
75
+
// Wait for operation cancellation completion. Default.
76
+
WAIT_CANCELLATION_COMPLETED=0;
75
77
// Do not request cancellation of the nexus operation if already scheduled
76
-
ABANDON=0;
78
+
ABANDON=1;
77
79
78
80
// Initiate a cancellation request for the Nexus operation and immediately report cancellation
79
81
// to the caller. Note that it doesn't guarantee that cancellation is delivered to the operation if calling workflow exits before the delivery is done.
80
82
// If you want to ensure that cancellation is delivered to the operation, use WAIT_CANCELLATION_REQUESTED.
81
-
TRY_CANCEL=1;
83
+
TRY_CANCEL=2;
82
84
// Request cancellation of the operation and wait for confirmation that the request was received.
83
-
WAIT_CANCELLATION_REQUESTED=2;
84
-
// Wait for operation cancellation completion. Default.
0 commit comments