-
Notifications
You must be signed in to change notification settings - Fork 36
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
Multiple instance/runtime running at same time? #419
Comments
GPT4:You're right in noting that the code snippet you provided suggests that a single graph is being set as the main graph for a given runtime. However, this doesn't imply that only one graph can run at a time. Let's break down some concepts:
For your specific use case, where you want to run multiple graphs in the background of your app:
However, if you're looking for a built-in "swarm" feature or functionality in |
I'm trying to understand how swarm control work in noflo-nodejs.
noflo-nodejs/src/runtime.js
Lines 19 to 34 in e698f7b
Here seems there is only one
runtime
in the nodejs server? And this singleton runtime will only have one main graph assetMainGraph
is used.So this make it seems that noflo-nodejs can only run a graph at one time, but it doesn't, so how does it do?
Background: I'm trying to run multiple graph at background in my app that embeds noflo.
The text was updated successfully, but these errors were encountered: