[Overview][Types][Classes][Index] |
Size (or depth) for the queue.
Source position: lazcollections.pas line 73
public property TLazFifoQueue.QueueSize : Integer |
Indicates the number of storage slots available in the internal storage for the queue.
Use TotalItemsPushed and TotalItemsPopped to determine the utilization level for the queue. Use IsFull or IsEmpty to determine if all or none of the storage slots have been filled in the queue. Use Grow to increase (or decrease) the queue depth.
|
Total number of entries that have been popped off of the queue. |
|
|
Total number of entries that have been pushed onto the queue. |
|
|
Indicates if all of the internal storage slots have been used in the queue storage. |
|
|
Indicates if none of the internal storage slots have been used in the queue storage. |
|
|
Resizes the internal storage for the queue by the specified Delta value. |
Version 4.0 | Generated 2025-05-03 | Home |