using JT808.Protocol; using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace JT808.Gateway.NBIotSimpleClient.Services { /// /// 接收平台下发的数据包 /// public class ReceviePackageService { public BlockingCollection BlockingCollection { get; } public ReceviePackageService() { BlockingCollection = new BlockingCollection(999999); } } }