選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 

24 行
417 B

  1. using JT808.Gateway.Abstractions;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace JT808.Gateway.Internal
  7. {
  8. class JT808MsgProducer_Empty : IJT808MsgProducer
  9. {
  10. public string TopicName { get; }
  11. public void Dispose()
  12. {
  13. }
  14. public void ProduceAsync(string terminalNo, byte[] data)
  15. {
  16. }
  17. }
  18. }