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.
 
 
 
 

21 lines
700 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 : IApplicationMessageReceiver, IApplicationMessagePublisher
  8. {
  9. bool IsConnected { get; }
  10. event EventHandler<MqttClientConnectedEventArgs> Connected;
  11. event EventHandler<MqttClientDisconnectedEventArgs> Disconnected;
  12. Task<MqttClientConnectResult> ConnectAsync(IMqttClientOptions options);
  13. Task DisconnectAsync();
  14. Task<IList<MqttSubscribeResult>> SubscribeAsync(IEnumerable<TopicFilter> topicFilters);
  15. Task UnsubscribeAsync(IEnumerable<string> topicFilters);
  16. }
  17. }