Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TQueue
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Enqueue
(
const FElementType& Item |
Adds an item to the head of the queue.To be called only from producer thread(s). | Containers/Queue.h | |
bool Enqueue
(
FElementType&& Item |
Adds an item to the head of the queue.To be called only from producer thread(s). | Containers/Queue.h |
Enqueue(const FElementType &)
Description
Adds an item to the head of the queue.
To be called only from producer thread(s).
| Name | Enqueue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Queue.h |
| Include Path | #include "Containers/Queue.h" |
bool Enqueue
(
const FElementType & Item
)
true if the item was added, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add. |
See Also
-
Pop
Enqueue(FElementType &&)
Description
Adds an item to the head of the queue.
To be called only from producer thread(s).
| Name | Enqueue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Queue.h |
| Include Path | #include "Containers/Queue.h" |
bool Enqueue
(
FElementType && Item
)
true if the item was added, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add. |
See Also
-
Pop