You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
448 B

  1. using JT808.DotNetty.Abstractions;
  2. using JT808.DotNetty.Abstractions.Enums;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace JT808.DotNetty.Core.Impls
  8. {
  9. class JT808DownlinkPacketEmptyImpl : IJT808DownlinkPacket
  10. {
  11. public Task ProcessorAsync(byte[] data, JT808TransportProtocolType transportProtocolType)
  12. {
  13. return Task.CompletedTask;
  14. }
  15. }
  16. }