重构流程引擎核心组件,引入执行器接口Executor替代原有TaskComponent,优化节点配置映射逻辑: 1. 新增mappers模块集中处理节点配置提取 2. 为存储层添加Storage trait抽象 3. 移除对ctx魔法字段的依赖,直接传递节点信息 4. 增加构建器模式支持引擎创建 5. 完善DSL解析的输入校验 同时标记部分未使用代码为allow(dead_code)
8 lines
128 B
Rust
8 lines
128 B
Rust
pub mod domain;
|
|
pub mod context;
|
|
pub mod task;
|
|
pub mod engine;
|
|
pub mod dsl;
|
|
pub mod storage;
|
|
pub mod executors;
|
|
pub mod mappers; |