[Overview][Types][Classes][Index] Reference for unit 'LazCollections' (#lazutils)

TLazFifoQueue.TotalItemsPopped

Total number of entries that have been popped off of the queue.

Declaration

Source position: lazcollections.pas line 74

public property TLazFifoQueue.TotalItemsPopped : QWord
  read FTotalItemsPopped;

Description

Used with QueueSize to determine the next position (head) for the queue. (TotalItemsPopped mod QueueSize). Used with TotalItemsPushed to determine if the queue is empty or full. The value for the property is incremented in the PopItem method after the item at the head of the queue has been retrieved from the internal storage.

See also

TLazFifoQueue.TotalItemsPushed

  

Total number of entries that have been pushed onto the queue.

TLazFifoQueue.QueueSize

  

Size (or depth) for the queue.

TLazFifoQueue.PopItem

  

Pops an item of the specified type off of the head of the queue.


Version 4.0 Generated 2025-05-03 Home