wanshenmean
2026-03-13 0b3d9467bfd081f607c7b17642e6c017aa32678d
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);
    }
}