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 line
451 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Threading.Tasks;
  5. namespace JT808.Gateway.Abstractions
  6. {
  7. public interface IJT808MsgProducer : IJT808PubSub, IDisposable
  8. {
  9. /// <summary>
  10. ///
  11. /// </summary>
  12. /// <param name="terminalNo">设备终端号</param>
  13. /// <param name="data">808 hex data</param>
  14. void ProduceAsync(string terminalNo, byte[] data);
  15. }
  16. }