随笔分类 -  workflow

workflow
摘要:一、runner.js工作流运行者 // - identifier: Unique identifier for this runner. 每个runner一个唯一标示 // - forks: Max number of child processes to fork at the same tim 阅读全文
posted @ 2020-08-22 16:07 FromScratch 阅读(601) 评论(0) 推荐(0)
摘要:var workflowDef = { start:{ fn:"begin", //对应处理方法可以在内部定义,也可以在外部定义 next:["task1","task2"] }, end:"end", tasks:[{ id:"task1", fn:function(){ alert("执行任务一 阅读全文
posted @ 2019-12-16 16:40 FromScratch 阅读(239) 评论(0) 推荐(0)