perf: 流水线同一个阶段任务优化为并行执行

This commit is contained in:
xiaojunnuo
2025-03-11 00:46:03 +08:00
parent fc8bef5aae
commit efa9c748c5
4 changed files with 56 additions and 15 deletions
@@ -107,6 +107,12 @@ export type Log = {
text: string;
};
export type ResultError = {
e: any;
returnType: ResultType;
runnable: Runnable;
};
export enum ResultType {
start = "start",
success = "success",