Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IMqttCommunicationAdapter.cs 595 B

il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
il y a 7 ans
12345678910111213141516171819202122
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Threading.Tasks;
  4. using MQTTnet.Core.Client;
  5. using MQTTnet.Core.Packets;
  6. using MQTTnet.Core.Serializer;
  7. namespace MQTTnet.Core.Adapter
  8. {
  9. public interface IMqttCommunicationAdapter
  10. {
  11. IMqttPacketSerializer PacketSerializer { get; }
  12. Task ConnectAsync(TimeSpan timeout, MqttClientOptions options);
  13. Task DisconnectAsync(TimeSpan timeout);
  14. Task SendPacketsAsync(TimeSpan timeout, IEnumerable<MqttBasePacket> packets);
  15. Task<MqttBasePacket> ReceivePacketAsync(TimeSpan timeout);
  16. }
  17. }