wanshenmean
2026-03-12 f56441867f2cc77567f97a92348a5d878f0dca05
1
2
3
4
5
6
7
8
9
10
namespace WIDESEAWCS_Tasks.Workflow.Abstractions
{
    /// <summary>
    /// 机器人简单命令处理器(如运行状态、模式切换、全流程完成命令)。
    /// </summary>
    public interface IRobotSimpleCommandHandler
    {
        Task<bool> HandleAsync(string message, RobotSocketState state);
    }
}