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.
 
 
 

14 lines
328 B

  1. using JT808.DotNetty.Abstractions;
  2. using System.Threading.Tasks;
  3. namespace JT808.DotNetty.Core
  4. {
  5. internal class JT808SessionPublishingEmptyImpl : IJT808SessionPublishing
  6. {
  7. public Task PublishAsync(string topicName, string key, string value)
  8. {
  9. return Task.CompletedTask;
  10. }
  11. }
  12. }