Просмотр исходного кода

New functions

This is to support the peek-and-publish model for the managed client
release/3.x.x
Paul Fake 6 лет назад
committed by GitHub
Родитель
Сommit
9ff39c1fd9
Не найден GPG ключ соответствующий данной подписи Идентификатор GPG ключа: 4AEE18F83AFDEB23
1 измененных файлов: 32 добавлений и 0 удалений
  1. +32
    -0
      Source/MQTTnet/Internal/BlockingQueue.cs

+ 32
- 0
Source/MQTTnet/Internal/BlockingQueue.cs Просмотреть файл

@@ -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()
{


Загрузка…
Отмена
Сохранить