wanshenmean
2026-03-17 94ad631d316da04c46266ddb1fc6e63e6f8f2fae
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System.Net.Sockets;
 
namespace WIDESEAWCS_Tasks.Workflow.Abstractions
{
    /// <summary>
    /// 机器人前缀命令处理器(pickfinished / putfinished)。
    /// </summary>
    public interface IRobotPrefixCommandHandler
    {
        bool IsPrefixCommand(string message);
 
        Task HandleAsync(string message, RobotSocketState state, TcpClient client);
    }
}