INetMessage.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace MECF.Framework.RT.Core.IoProviders.Common.IMessage
  6. {
  7. /// <summary>
  8. /// 本系统的消息类,包含了各种解析规则,数据信息提取规则
  9. /// </summary>
  10. public interface INetMessage
  11. {
  12. /// <summary>
  13. /// 消息头的指令长度
  14. /// </summary>
  15. int ProtocolHeadBytesLength { get; }
  16. /// <summary>
  17. /// 从当前的头子节文件中提取出接下来需要接收的数据长度
  18. /// </summary>
  19. /// <returns>返回接下来的数据内容长度</returns>
  20. int GetContentLengthByHeadBytes();
  21. /// <summary>
  22. /// 检查头子节的合法性
  23. /// </summary>
  24. /// <param name="token">特殊的令牌,有些特殊消息的验证</param>
  25. /// <returns>是否成功的结果</returns>
  26. bool CheckHeadBytesLegal(byte[] token);
  27. /// <summary>
  28. /// 获取头子节里的消息标识
  29. /// </summary>
  30. /// <returns>消息标识</returns>
  31. int GetHeadBytesIdentity();
  32. /// <summary>
  33. /// 消息头字节
  34. /// </summary>
  35. byte[] HeadBytes { get; set; }
  36. /// <summary>
  37. /// 消息内容字节
  38. /// </summary>
  39. byte[] ContentBytes { get; set; }
  40. /// <summary>
  41. /// 发送的字节信息
  42. /// </summary>
  43. byte[] SendBytes { get; set; }
  44. }
  45. }