using System.Net.Sockets;
namespace WIDESEAWCS_Tasks.Workflow.Abstractions
{
///
/// »úÆ÷ÈËÏûϢ·ÓÉÈë¿Ú¡£ÓÃÓÚ³Ð½Ó TcpSocketServer µÄÏûϢʼþ¡£
///
public interface IRobotMessageRouter
{
Task HandleMessageReceivedAsync(string message, bool isJson, TcpClient client, RobotSocketState state);
}
}