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: internal/client/types.go
+6-7Lines changed: 6 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -26,13 +26,12 @@ type WorkflowInvocationRequest struct {
26
26
QoS function.RequestQoS
27
27
CanDoOffloadingbool
28
28
Asyncbool
29
-
// NextNodes []string // DagNodeId
30
-
// we do not add Progress here, only the next group of node that should execute
31
-
// in case of choice node, we retrieve the progress for each taskId and execute only the one that is not in Skipped State
32
-
// in case of fan out node, we retrieve all the progress and execute concurrently all the tasks in the group.
33
-
// in case of fan in node, we retrieve periodically all the progress of the previous nodes and start the merging only when all previous node are completed.
34
-
// or simply, we can get the N partialData for the Fan Out, coming from the previous nodes.
35
-
// furthermore, we should be careful not to run multiple fanIn at the same time!
29
+
}
30
+
31
+
// WorkflowInvocationResumeRequest is a request to resume the execution of a workflow (typically on a remote node)
0 commit comments