Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

IMqttCommunicationAdapter.cs 530 B

7 år sedan
7 år sedan
7 år sedan
7 år sedan
123456789101112131415161718192021
  1. using System;
  2. using System.Threading.Tasks;
  3. using MQTTnet.Core.Client;
  4. using MQTTnet.Core.Packets;
  5. using MQTTnet.Core.Serializer;
  6. namespace MQTTnet.Core.Adapter
  7. {
  8. public interface IMqttCommunicationAdapter
  9. {
  10. Task ConnectAsync(MqttClientOptions options, TimeSpan timeout);
  11. Task DisconnectAsync();
  12. Task SendPacketAsync(MqttBasePacket packet, TimeSpan timeout);
  13. Task<MqttBasePacket> ReceivePacketAsync(TimeSpan timeout);
  14. IMqttPacketSerializer PacketSerializer { get; }
  15. }
  16. }