Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TQueue
Description
Removes and returns the item from the tail of the queue.
To be called only from consumer thread.
| Name | Dequeue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Queue.h |
| Include Path | #include "Containers/Queue.h" |
bool Dequeue
(
FElementType & OutItem
)
true if a value was returned, false if the queue was empty.
Parameters
| Name | Remarks |
|---|---|
| OutValue | Will hold the returned value. |
See Also
-
Empty
-
Enqueue
-
IsEmpty
-
Peek
-
Pop