Пример #1
0
 /// <summary>
 /// Says to this queue that addressed element is not in use anymore
 /// (after the count of used elements became less then allowed one, it will be allowed to use element with such address)
 /// </summary>
 /// <param name="address">Address of element that not in use anymore</param>
 public void ReportDecrementItemUsages(TKey address)
 {
     _itemsInUseCounters.DecrementCount(address);
 }