async.waterfall的async.retryable模式是什么?

时间:2016-05-24 21:25:09

标签: javascript node.js async.js

http://www.devua.co/2016/05/20/how-to-run-blog-on-openshift-complete-guide/显示retryable的{​​{1}}示例,但我想知道async.auto的模式是什么样的?我一直无法追查任何例子。它看起来像这样:

async.waterfall

1 个答案:

答案 0 :(得分:0)

在进行进一步研究时,我已在下面的async.retryable(步骤3)的背景下确认这是async.waterfall的正确模式:

async.waterfall([ 
    step1, 
    step2, 
    async.retryable([opts = {times: 5, interval: 3000}], step3), 
    step4 
    ], 
    function(error, result) { 
        if (error) { console.error(error); return; 
        } console.log(result); 
    });