using System.Net.Sockets; namespace WIDESEAWCS_Tasks.Workflow.Abstractions { /// /// 机器人前缀命令处理器(pickfinished / putfinished)。 /// public interface IRobotPrefixCommandHandler { bool IsPrefixCommand(string message); Task HandleAsync(string message, RobotSocketState state, TcpClient client); } }