Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Async > API/Runtime/Core/Async/Fundamental
Inheritance Hierarchy
- TWorkStealingQueueBase2
- TWorkStealingQueue2
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Async/Fundamental/LocalQueue.h |
| Include | #include "Async/Fundamental/LocalQueue.h" |
Syntax
template<uint32 NumItems>
class TWorkStealingQueueBase2
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | Get
(
uintptr_t& Item |
Remove an item at the head position in FIFO order (this can only safe on a single thread, shared with Put) | |
| bool | Put
(
uintptr_t Item |
Insert an item at the head position (this can only safe on a single thread, shared with Get) | |
| bool | Steal
(
uintptr_t& Item |
Remove an item at the tail position in LIFO order (this can be done from any thread including the one that accesses the head) |
Enums
| Type | Name | Description | |
|---|---|---|---|
| ESlotState |