No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

13 líneas
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. }