1
async documentationはasync.auto
のretryable
の例を示していますが、async.waterfall
のパターンはどうなっていますか?私は例を追跡することができませんでした。それはこのようなものになります。私は、これは以下のasync.waterfall
の文脈でasync.retryable
の正しいパターンで確認している更なる研究を行うにはasync.waterfallのasync.retryableパターンとは何ですか?
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);
});