We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another aspect of manipulating graphs at run-time required for #7 is being able to reference and manipulate nodes in sub-graphs at run-time, e.g.:
app.AddGraph("feedGrabber") app.Get("feedGrabber").Add("web.UrlReader", "reader") app.Get("feedGrabber").Add("web.RssParser", "parser") app.Get("feedGrabber").Connect("reader", "Data", "parser", "XML") app.Get("feedGrabber").MapInPort("In", "reader", "URL") app.Get("feedGrabber").MapOutPort("Out", "parser", "Entry") app.Connect("crawler", "Link", "feedGrabber", "In") app.Connect("feedGrabber", "Out", "storage", "FeedIn") app.Run("feedGrabber")
It is also important to take into consideration how running processes react on getting connected to new nodes and getting disconnecting from nodes.
The text was updated successfully, but these errors were encountered:
Added Graph.AddGraph() method for #11
Graph.AddGraph()
d9928cb
Added function signatures left to complete the #11. Implemented some …
f04f7e8
…of them. More implementations and tests are TODO.
Implemented more of #11. Tests are TODO.
7d5b889
Reconnection tests for #11
452faaa
No branches or pull requests
Another aspect of manipulating graphs at run-time required for #7 is being able to reference and manipulate nodes in sub-graphs at run-time, e.g.:
It is also important to take into consideration how running processes react on getting connected to new nodes and getting disconnecting from nodes.
The text was updated successfully, but these errors were encountered: