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!
I love to use async.auto for easy controlling control flow even in situation, which does not strictly require parallel execution. But it has nice feature - easily manageable dependencies of each tasks.
But there is one thing, that bugs me. If i ever want to use results from previous tasks, the task function have to know exact string name of that previous task. Which is not good, because that function might be from another file. When someone change that string name, not-so-easily-spottable bug appears.
Example (As you seee, inside function "bbb", i must know name "a"):
My proposal for this use case is to have some wrapper, which turns dependency list into arguments, so you only need to know names in defining async.auto.
In the end, i wrote some simple wrapper to demonstrate funcionality, which i am now offering for async, in case you decide its good pattern and practice for others :) (i will use it anyway).
Hello!
I love to use async.auto for easy controlling control flow even in situation, which does not strictly require parallel execution. But it has nice feature - easily manageable dependencies of each tasks.
But there is one thing, that bugs me. If i ever want to use results from previous tasks, the task function have to know exact string name of that previous task. Which is not good, because that function might be from another file. When someone change that string name, not-so-easily-spottable bug appears.
Example (As you seee, inside function "bbb", i must know name "a"):
My proposal for this use case is to have some wrapper, which turns dependency list into arguments, so you only need to know names in defining async.auto.
Example of desired use and its equivalent:
In the end, i wrote some simple wrapper to demonstrate funcionality, which i am now offering for async, in case you decide its good pattern and practice for others :) (i will use it anyway).
The text was updated successfully, but these errors were encountered: