wanshenmean
2026-03-11 a8f45091019012eeafec563913dee71cda3d9790
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);
    }
}