码迷,mamicode.com
首页 > 其他好文 > 详细

waterfall实现

时间:2017-05-29 09:59:32      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:task   row   index   null   logs   timeout   try   span   ror   

 1 function TaskRun(tasks,done)
 2 {
 3     var task_index=0;
 4     done=done||((err)=>{
 5         err&&console.log(err);
 6     });
 7     function next()    {
 8         if(task_index==tasks.length) {return done(null);}
 9         var args=[].slice.call(arguments);
10         args.push(next);
11         try{
12             tasks[task_index++].apply(this,args);
13         }catch(ex){
14             return done(ex);
15         }
16     }
17     next(); 
18 }
19 
20 TaskRun([function(next){
21     setTimeout(function(){
22         console.log("one");
23          next(1);
24      }, 10);
25     
26 },function(num1,next){
27     console.log("two");
28     console.log(num1);
29     throw new Error("sfdsf");
30     setTimeout(function(){
31         console.log("last");
32          next(3,4);
33      }, 10);
34 },function(num1,num2,next){
35     console.log("5");
36     console.log(num1);
37     console.log(num2);
38 }])

 

waterfall实现

标签:task   row   index   null   logs   timeout   try   span   ror   

原文地址:http://www.cnblogs.com/godghdai/p/6917141.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!