Skip to content
New issue

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

Run-time network manipulation #11

Closed
trustmaster opened this issue Sep 6, 2013 · 0 comments
Closed

Run-time network manipulation #11

trustmaster opened this issue Sep 6, 2013 · 0 comments
Labels
Milestone

Comments

@trustmaster
Copy link
Owner

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.

trustmaster added a commit that referenced this issue Oct 25, 2013
trustmaster added a commit that referenced this issue May 18, 2014
…of them. More implementations and tests are TODO.
@trustmaster trustmaster added this to the 0.1 milestone May 25, 2014
trustmaster added a commit that referenced this issue Jan 14, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant