Uniot Core
0.8.1
Loading...
Searching...
No Matches
LimitedQueue

A queue with a maximum size limit that automatically removes oldest elements when full. More...

Collaboration diagram for LimitedQueue:

Classes

class  LimitedQueue< T >
 

Detailed Description

A queue with a maximum size limit that automatically removes oldest elements when full.

LimitedQueue extends ClearQueue with capacity limiting functionality. When the queue reaches its size limit and a new element is added, the oldest element is automatically removed to maintain the size constraint.

Template Parameters
TThe type of elements stored in the queue