Add run button on node. #28
Replies: 1 comment 1 reply
-
|
@George-bai thanks for your kind words. Right now, when you run a flow, all nodes are executed. (there is a way to run only selected nodes also). However, from the server's persective, the operation is atomic. The server runs the flow and is back to it's initial state. This way it is able to serve multiple users at the same time. When you are running nodes one by one, how would you manage the state of each node that has been already run? Should it be stored on the server or on the client side? If it has to be stored on the client side, then we cannot store large data. And we'll somehow have to communicate the current state of the runs to the server. If the state is managed on the server, we need to somehow identify each session and their individual runs/state and load and unload the state. It is possible to implement this, however, may take some effort :) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi @idling-mind, thanks for your awesome work. It that possible to add a small triangle run button at the right top corner of each node, and if the inputs are valid, the button is enabled, user can run single node one-by-one. this will be really useful when building a workflow. Thanks.
Beta Was this translation helpful? Give feedback.
All reactions