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.

17 lines
457 B

  1. using System;
  2. using System.Threading.Tasks;
  3. namespace JT809.PubSub.Abstractions
  4. {
  5. public interface IJT809Producer: IJT809PubSub, IDisposable
  6. {
  7. /// <summary>
  8. ///
  9. /// </summary>
  10. /// <param name="msgId">消息Id</param>
  11. /// <param name="vno_color">车牌号+车牌颜色</param>
  12. /// <param name="data">hex data</param>
  13. void ProduceAsync(string msgId, string vno_color, byte[] data);
  14. }
  15. }