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

TLazFifoQueue.IsFull

Indicates if all of the internal storage slots have been used in the queue storage.

Declaration

Source position: lazcollections.pas line 77

public property TLazFifoQueue.IsFull : Boolean
  read GetIsFull;

Description

IsFull is a read-only Boolean property which indicates if all of the storage slots are used in the internal storage for the queue. The value is True when TotalItemsPushed - TotalItemsPopped = QueueSize.

Use IsEmpty to determine if none of the available storage slots are in use in the internal storage for the queue.

See also

TLazFifoQueue.TotalItemsPopped

  

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

TLazFifoQueue.TotalItemsPushed

  

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

TLazFifoQueue.QueueSize

  

Size (or depth) for the queue.

TLazFifoQueue.IsEmpty

  

Indicates if none of the internal storage slots have been used in the queue storage.


Version 4.0 Generated 2025-05-03 Home