From 830503eee49380106e1fb2fe9a99ed87ec16c9a5 Mon Sep 17 00:00:00 2001 From: slhafzjw Date: Fri, 23 Jan 2026 19:23:07 +0800 Subject: [PATCH] chore(ActionExecutor): update comments --- .../action/dispatcher/executor/ActionExecutor.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Partner-Main/src/main/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionExecutor.java b/Partner-Main/src/main/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionExecutor.java index bd01e0f4..25bfbfe0 100644 --- a/Partner-Main/src/main/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionExecutor.java +++ b/Partner-Main/src/main/java/work/slhaf/partner/module/modules/action/dispatcher/executor/ActionExecutor.java @@ -55,6 +55,12 @@ public class ActionExecutor extends AgentRunningSubModule immediateActions = input.getImmediateActions(); @@ -82,14 +88,14 @@ public class ActionExecutor extends AgentRunningSubModule metaActions = actionChain.get(order); for (MetaAction metaAction : metaActions) { - // 根据io类型放入合适的列表 + // 根据 io 类型放入合适的列表 if (metaAction.isIo()) { virtual.add(metaAction); } else { platform.add(metaAction); } } - // 使用phaser来承担同组的动态任务新增 + // 使用 phaser 来承担同组的动态任务新增 runGroupAction(virtual, userId, actionData, virtualExecutor, phaserRecord); runGroupAction(platform, userId, actionData, platformExecutor, phaserRecord); phaser.arriveAndAwaitAdvance(); @@ -133,7 +139,7 @@ public class ActionExecutor extends AgentRunningSubModule