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.
 
 
 
 

24 rivejä
732 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using MQTTnet.Core.Packets;
  5. namespace MQTTnet.Core.Client
  6. {
  7. public interface IMqttClient
  8. {
  9. bool IsConnected { get; }
  10. event EventHandler<MqttApplicationMessageReceivedEventArgs> ApplicationMessageReceived;
  11. event EventHandler Connected;
  12. event EventHandler Disconnected;
  13. Task ConnectAsync(MqttClientOptions options);
  14. Task DisconnectAsync();
  15. Task<IList<MqttSubscribeResult>> SubscribeAsync(IEnumerable<TopicFilter> topicFilters);
  16. Task UnsubscribeAsync(IEnumerable<string> topicFilters);
  17. Task PublishAsync(IEnumerable<MqttApplicationMessage> applicationMessages);
  18. }
  19. }