|
123456789101112131415161718 |
- using System;
- using System.Threading.Tasks;
- using MQTTnet.Core.Client;
- using MQTTnet.Core.Packets;
-
- namespace MQTTnet.Core.Adapter
- {
- public interface IMqttCommunicationAdapter
- {
- Task ConnectAsync(MqttClientOptions options, TimeSpan timeout);
-
- Task DisconnectAsync();
-
- Task SendPacketAsync(MqttBasePacket packet, TimeSpan timeout);
-
- Task<MqttBasePacket> ReceivePacketAsync(TimeSpan timeout);
- }
- }
|