We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e317f06 commit 516684cCopy full SHA for 516684c
workflow/context.go
@@ -50,6 +50,11 @@ func (wfc *WorkflowContext) IsReplaying() bool {
50
return wfc.orchestrationContext.IsReplaying
51
}
52
53
+// SetCustomStatus sets custom status to the workflow context
54
+func (wfc *WorkflowContext) SetCustomStatus(cs string) {
55
+ wfc.orchestrationContext.SetCustomStatus(cs)
56
+}
57
+
58
// CallActivity returns a completable task for a given activity.
59
// You must call Await(output any) on the returned Task to block the workflow and wait for the task to complete.
60
// The value passed to the Await method must be a pointer or can be nil to ignore the returned value.
0 commit comments