using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using MQTTnet.Core.Packets; using MQTTnet.Core.Serializer; namespace MQTTnet.Core.Adapter { public interface IMqttCommunicationAdapter { IMqttPacketSerializer PacketSerializer { get; } Task ConnectAsync(TimeSpan timeout); Task DisconnectAsync(TimeSpan timeout); Task SendPacketsAsync(TimeSpan timeout, CancellationToken cancellationToken, IEnumerable packets); Task ReceivePacketAsync(TimeSpan timeout, CancellationToken cancellationToken); } }