cjs-async

1.6.0 • Public • Published

Asynchronous tools

build status npm version dependencies status devDependencies status Gitter RunKit API

Set of methods to synchronize asynchronous operations.

Installation

npm install cjs-async

Usage

parallel

Run the tasks array of functions in parallel, without waiting until the previous function has completed. If any of the functions pass an error to its callback, the main callback is immediately called with the value of the error. Once the tasks have completed, the results are passed to the final callback as an array and hash. Task function name is used to name the corresponding hash-table values. Task function can either use callback to specify error and result value or return result value immediately.

Online example:

var parallel = require('cjs-async/parallel'),
    taskList = [
        function ( callback ) {
            setTimeout(function () {
                callback(null, true);
            }, 10);
        },
        function ( callback ) {
            setTimeout(function () {
                callback(null, 256);
            }, 20);
        },
        function ( callback ) {
            setTimeout(function () {
                callback(null, '512');
            }, 0);
        },
        function () {
            return 32;
        }
    ];
 
parallel(taskList, function ( error, results ) {
    if ( !error ) {
        // results contains array of the given tasks execution results
        // [true, 256, '512', 32]
        console.log(results);
    }
});

serial

Run the functions in the tasks array in series, each one running once the previous function has completed. If any functions in the series pass an error to its callback, no more functions are run, and callback is immediately called with the value of the error. Otherwise, callback receives an array and hash of results when tasks have completed. Task function name is used to name the corresponding hash-table values. Task function can either use callback to specify error and result value or return result value immediately.

Online example:

var serial   = require('cjs-async/serial'),
    taskList = [
        function () {
            return 32;
        },
        function ( callback ) {
            setTimeout(function () {
                callback(null, true);
            }, 10);
        },
        function ( callback ) {
            setTimeout(function () {
                callback(null, 256);
            }, 20);
        },
        function ( callback ) {
            setTimeout(function () {
                callback(null, '512');
            }, 0);
        }
    ];
    
serial(taskList, function ( error, results ) {
    if ( !error ) {
        // results contains array of the given tasks execution results
        // [32, true, 256, '512']
        console.log(results);
    }
});

Contribution

If you have any problems or suggestions please open an issue according to the contribution rules.

License

cjs-async is released under the MIT License.

Dependents (4)

Package Sidebar

Install

npm i cjs-async

Weekly Downloads

121

Version

1.6.0

License

MIT

Unpacked Size

11.7 kB

Total Files

6

Last publish

Collaborators

  • cjssdk