node-vasync icon indicating copy to clipboard operation
node-vasync copied to clipboard

utilities for observable asynchronous control flow

Results 17 node-vasync issues
Sort by recently updated
recently updated
newest added

It would be nice if pipeline() and forEachPipeline() supported a mode where you just specify the functions as an array or as a list of arguments. The extra level of...

The README could be clearer for newcomers, and it could use some examples of debugging using MDB. CC @bcantrill

It would be nice to have DTrace probes for each operation so we could keep track of when the start/stop.

If inlined functions are used, then potential errors will not return the line number of where that function was invoked: ``` javascript vasync.pipeline({funcs: [ function _foo(_, _cb) { bar(cb); }...

It would be neat if you could, once you detect some kind of error condition, call an `abort(err)` routine on a Barrier. This could fire `drain(err)` immediately, and ignore further...