Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

24 wiersze
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. }