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.
 
 
 
 

21 righe
493 B

  1. using System;
  2. using MQTTnet.Client;
  3. using MQTTnet.Server;
  4. namespace MQTTnet.Extensions.ManagedClient
  5. {
  6. public interface IManagedMqttClientOptions
  7. {
  8. IMqttClientOptions ClientOptions { get; }
  9. TimeSpan AutoReconnectDelay { get; }
  10. TimeSpan ConnectionCheckInterval { get; }
  11. IManagedMqttClientStorage Storage { get; }
  12. int MaxPendingMessages { get; }
  13. MqttPendingMessagesOverflowStrategy PendingMessagesOverflowStrategy { get; }
  14. }
  15. }