Skip to content

Commit 741cafe

Browse files
committed
feat(管道模式): finish update
1 parent 82e099a commit 741cafe

File tree

13 files changed

+158
-199
lines changed

13 files changed

+158
-199
lines changed

packages/积木模式/article.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1157,7 +1157,7 @@ export type state = null
11571157
渲染
11581158
```
11591159
1160-
运行结果跟之前一样
1160+
打印结果跟之前一样
11611161
11621162
11631163

packages/管道模式/article.md

Lines changed: 134 additions & 179 deletions
Large diffs are not rendered by default.
204 KB
Loading
67.8 KB
Loading
74.1 KB
Loading
24.4 KB
Loading
352 KB
Loading
148 KB
Loading

管道模式代码/pipeline_manager/src/type/RegisterPipelineType.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ export type jobOrder = {
1313
insertAction: insertAction,
1414
}
1515

16-
//可能要合并多个管道,所以jobOrders是数组,每个数组元素对应一个管道
16+
//可能要合并多种同名管道,所以jobOrders是数组,每个数组元素对应一种名字的管道
1717
export type jobOrders = Array<jobOrder>

管道模式抽象代码/client_abstract/src/Client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ systemState = System.registerAllPipelines(systemState)
66

77
System.init(systemState, configForInit).then(systemState => {
88
System.runPipeline1(systemState, configForPipeline1).then(systemState => {
9-
运行其它的管道...
9+
运行更多的管道...
1010
})
1111
})

0 commit comments

Comments
 (0)