Spring.Collections.Queues Unit
Classes
| TAbstractDeque<T> | |
| TAbstractQueue<T> | |
| TBoundedDeque<T> |
Represents a double-ended queue of items which has a fixed size and prevents adding items when full. |
| TBoundedQueue<T> |
Represents a first-in, first-out collection of items which has a fixed size and prevents adding items when full. |
| TDeque<T> |
Represents a double-ended queue of items which grows automatically. |
| TEvictingDeque<T> |
Represents a double-ended queue of items which has a fixed size and and removes items from the opposite end when full. |
| TEvictingQueue<T> |
Represents a first-in, first-out collection of items which has a fixed size and removes the oldest item when full. |
| TFoldedQueue<T> | |
| TQueue<T> |
Represents a first-in, first-out collection of items which grows automatically. |