-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Send selected edges to runtime, fixes #328
- Loading branch information
Showing
5 changed files
with
121 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
INPORT=Dispatch.IN:IN | ||
OUTPORT=Passed.OUT:PASS | ||
OUTPORT=NewActions.OUT:NEW | ||
|
||
'runtime:connected,context:edges' -> ROUTES Dispatch(ui/DispatchAction) | ||
|
||
# Pass connected runtime to all handlers and also outside | ||
Dispatch HANDLE[0] -> IN Runtimes(core/Merge) | ||
Runtimes OUT -> IN Passed(core/Merge) | ||
Dispatch PASS -> IN Passed | ||
|
||
# Send selected edges to runtime | ||
Dispatch HANDLE[1] -> EDGES SendEdges(runtime/SendEdges) | ||
Runtimes OUT -> RUNTIME SendEdges OUT -> IN Passed | ||
|
||
NewActions(core/Merge) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters