Explorar el Código

New functions

This is to support the peek-and-publish model for the managed client
release/3.x.x
Paul Fake hace 6 años
committed by GitHub
padre
commit
9ff39c1fd9
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4AEE18F83AFDEB23
Se han modificado 1 ficheros con 32 adiciones y 0 borrados
  1. +32
    -0
      Source/MQTTnet/Internal/BlockingQueue.cs

+ 32
- 0
Source/MQTTnet/Internal/BlockingQueue.cs Ver fichero

@@ -55,6 +55,38 @@ namespace MQTTnet.Internal
_gate.WaitOne();
}
}
public TItem PeekAndWait()
{
while (true)
{
lock (_syncRoot)
{
if (_items.Count > 0)
{
return _items.First.Value;
}

if (_items.Count == 0)
{
_gate.Reset();
}
}

_gate.WaitOne();
}
}

public void RemoveFirstIfEqual(TItem item)
{
lock (_syncRoot)
{
if (_items.Count > 0 && EqualityComparer<TItem>.Default.Equals(_items.First.Value, item))
{
_items.RemoveFirst();
}
}
}

public TItem RemoveFirst()
{


Cargando…
Cancelar
Guardar