路由壳升级:TaskWorker 三信号 + main_router→main_view 迁移(54/54 smoke 通过)
This commit is contained in:
@ -17,9 +17,9 @@ Step1View —— Step 1(水域掩膜生成)的前端视图(端到端模块
|
||||
|
||||
Step1View._on_run_clicked
|
||||
→ BaseView.dispatch_execute("step1", config)
|
||||
→ MainRouter.run_single_step(step_id, config)
|
||||
→ MainView.run_single_step(step_id, config)
|
||||
→ TaskWorker → services.step1_service.execute_step1(config)
|
||||
→ 返回结果 dict → MainRouter 日志区
|
||||
→ 返回结果 dict → MainView 日志区
|
||||
"""
|
||||
|
||||
import os
|
||||
@ -279,6 +279,6 @@ class Step1View(BaseView):
|
||||
|
||||
所有跨层通讯一律走 ``dispatch_execute``:
|
||||
|
||||
Step1View → 沿父链上溯 → MainRouter.run_single_step(step_id, config)
|
||||
Step1View → 沿父链上溯 → MainView.run_single_step(step_id, config)
|
||||
"""
|
||||
self.dispatch_execute("step1", self.get_config())
|
||||
Reference in New Issue
Block a user