Explorar el Código

add missing await

release/3.x.x
Eggers Jan hace 7 años
padre
commit
8fd3e5070d
Se han modificado 1 ficheros con 3 adiciones y 8 borrados
  1. +3
    -8
      MQTTnet.Core/Serializer/MqttPacketSerializer.cs

+ 3
- 8
MQTTnet.Core/Serializer/MqttPacketSerializer.cs Ver fichero

@@ -38,6 +38,7 @@ namespace MQTTnet.Core.Serializer
Buffer.BlockCopy( body, 0, writeBuffer, headerArray.Length, body.Length );

_sendTask = Send( writeBuffer, destination );
await _sendTask.ConfigureAwait( false );
}
}

@@ -286,14 +287,8 @@ namespace MQTTnet.Core.Serializer
var retain = fixedHeader.Read();
var qualityOfServiceLevel = (MqttQualityOfServiceLevel)fixedHeader.Read(2);
var dup = fixedHeader.Read();


var length = reader.ReadUInt16();
if (length != 5)
{
}
var topic = Encoding.UTF8.GetString( reader.ReadBytes( length ), 0, length );
var topic = reader.ReadStringWithLengthPrefix();

ushort packetIdentifier = 0;
if (qualityOfServiceLevel > MqttQualityOfServiceLevel.AtMostOnce)


Cargando…
Cancelar
Guardar