Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 
 

13 wiersze
359 B

  1. using System.Threading.Tasks;
  2. using MQTTnet.Core.Channel;
  3. using MQTTnet.Core.Packets;
  4. namespace MQTTnet.Core.Serializer
  5. {
  6. public interface IMqttPacketSerializer
  7. {
  8. Task SerializeAsync(MqttBasePacket mqttPacket, IMqttCommunicationChannel destination);
  9. Task<MqttBasePacket> DeserializeAsync(IMqttCommunicationChannel source);
  10. }
  11. }