I have a set of functions that are independent of each other [each of them returns a value, each of these functions also accept parameters.] and I wish to run them in parallel. If i use async.parallel I wont have the liberty to catch the values. Is there a way to do this?
Thanks.
async.paralleliscallback(err, results)- An optional callback to run once all the functions have completed. This function gets a results array (or object) containing all the result arguments passed to the task callbacks.async.each. Read the docs!