您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

24 行
577 B

  1. using JT808.Protocol;
  2. using System;
  3. using System.Collections.Concurrent;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace JT808.Gateway.NBIotSimpleClient.Services
  9. {
  10. /// <summary>
  11. /// 接收平台下发的数据包
  12. /// </summary>
  13. public class ReceviePackageService
  14. {
  15. public BlockingCollection<JT808Package> BlockingCollection { get; }
  16. public ReceviePackageService()
  17. {
  18. BlockingCollection = new BlockingCollection<JT808Package>(999999);
  19. }
  20. }
  21. }