Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

IManagedMqttClient.cs 783 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using MQTTnet.Client;
  5. namespace MQTTnet.ManagedClient
  6. {
  7. public interface IManagedMqttClient : IApplicationMessageReceiver, IApplicationMessagePublisher, IDisposable
  8. {
  9. bool IsStarted { get; }
  10. bool IsConnected { get; }
  11. event EventHandler<MqttClientConnectedEventArgs> Connected;
  12. event EventHandler<MqttClientDisconnectedEventArgs> Disconnected;
  13. event EventHandler<ApplicationMessageProcessedEventArgs> ApplicationMessageProcessed;
  14. Task StartAsync(IManagedMqttClientOptions options);
  15. Task StopAsync();
  16. Task SubscribeAsync(IEnumerable<TopicFilter> topicFilters);
  17. Task UnsubscribeAsync(IEnumerable<string> topics);
  18. }
  19. }