You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello (great lib btw), as the title says.. I'm interested in know if is there a way to change the rules that belongs for a flow dynamically. Right now I need to remove the flow and create it again, I just take a glance over code and I found this:
deleteFlow: function (name) {
if(instanceOf(name, FlowContainer)) {
name = name.name;
}
delete flows[name];
return FlowContainer;
}
so my questions:
** The code above means that there is any kind of synchronization between a 'processing rules process' and a 'deletion of a flow process', right? so there are some mysterious errors that could give when evaluating the rules and deleting a flow.
** Are create/delete/modify rules supported with in nools?
** Are you planning to add this feature in a nearly future ?
Thanks.
The text was updated successfully, but these errors were encountered:
@rahpuser this is is actually an interesting thought, but Im not sure how this would occur without rebuilding the current fact tree from the point of change, in which case it might be more efficient to create a new flow and start the session over again. Let me think about this some more, but it wont be anytime in the immediate future.
However I am open to pull requests if you feel up to it!
Hello (great lib btw), as the title says.. I'm interested in know if is there a way to change the rules that belongs for a flow dynamically. Right now I need to remove the flow and create it again, I just take a glance over code and I found this:
deleteFlow: function (name) {
if(instanceOf(name, FlowContainer)) {
name = name.name;
}
delete flows[name];
return FlowContainer;
}
so my questions:
** The code above means that there is any kind of synchronization between a 'processing rules process' and a 'deletion of a flow process', right? so there are some mysterious errors that could give when evaluating the rules and deleting a flow.
** Are create/delete/modify rules supported with in nools?
** Are you planning to add this feature in a nearly future ?
Thanks.
The text was updated successfully, but these errors were encountered: