Ver código fonte

Reduce the performance cost of Memory<T>.getSpan()

release/3.x.x
xljiulang 4 anos atrás
pai
commit
9ed80daf83
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      Source/MQTTnet.AspnetCore/Extensions/ReaderExtensions.cs

+ 2
- 2
Source/MQTTnet.AspnetCore/Extensions/ReaderExtensions.cs Ver arquivo

@@ -80,7 +80,7 @@ namespace MQTTnet.AspNetCore
headerLength = 0;
bodyLength = 0;
var temp = input.Slice(0, Math.Min(5, input.Length)).GetMemory();
var temp = input.Slice(0, Math.Min(5, input.Length)).GetMemory().Span;

do
{
@@ -88,7 +88,7 @@ namespace MQTTnet.AspNetCore
{
return false;
}
encodedByte = temp.Span[index];
encodedByte = temp[index];
index++;

value += (byte)(encodedByte & 127) * multiplier;


Carregando…
Cancelar
Salvar