Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

IMqttClientQueued.cs 192 B

123456789
  1. using System.Threading.Tasks;
  2. namespace MQTTnet.Core.Client
  3. {
  4. public interface IMqttClientQueued: IMqttClient
  5. {
  6. Task ConnectAsync(MqttClientQueuedOptions options);
  7. }
  8. }