编程语言
首页 > 编程语言> > javascript – 调用Node.js的async.parallel()同步吗?

javascript – 调用Node.js的async.parallel()同步吗?

作者:互联网

我正在看看Node.js的异步模块来解决问题.我已经实施了一个小测试:

var async = require("async");

function print(val) {
    console.log(val);
}

async.parallel([
    function(cb){ print(1); cb(null); },
    function(cb){ print(2); cb(null); },
    function(cb){ print(3); cb(null); },
    function(cb){ print(4); cb(null); },
    function(cb){ print(5); cb(null); }
],
    function(err) {
        if ( err ) {
            console.error(err);
            return;
        }
        console.log("Done!");
    }
);

console.log("Trulu");

我可以确定在调用async.parallel完成之前永远不会调用Trulu日志调用吗?换句话说,在调用Trulu日志之前调用的所有函数和最终回调是肯定的吗?

解决方法:

Can I be sure that the Trulu log call will never be called before the call to async.parallel is finished?

电话本身,是的.

In other words, are all the functions

我想是的,虽然文档没有提到它.但是我希望不会有任何变化,因为这可能会破坏现有代码.

and the final callback called before the Trulu log is called for sure?

不.你不知道这些功能,当它们是异步的时候,最终的回调将在Trulu之后执行.如果所有函数都是同步的,则无论如何都不应该使用async.实际上,虽然async.js确实使用setImmediate internally所以一些回调(遗憾的是很难识别)将是“异步”,但维护者stated

Yes, making functions asynchronous is left up to the developer

如果要确保始终以异步方式调用回调(在Trulu之后),即使函数是同步的,也可以考虑使用A+ compliant Promises.

标签:async-js,javascript,node-js,asynchronous
来源: https://codeday.me/bug/20191002/1841384.html