Navigation
API > API/Runtime > API/Runtime/Core
| Name | TLockFreePointerListFIFO |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/LockFreeList.h |
| Include Path | #include "Containers/LockFreeList.h" |
Syntax
template<class T, int TPaddingForCacheContention>
class TLockFreePointerListFIFO : private FLockFreePointerFIFOBase< T, TPaddingForCacheContention >
Inheritance Hierarchy
- FLockFreePointerFIFOBase → TLockFreePointerListFIFO
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool IsEmpty() |
Check if the list is empty. | Containers/LockFreeList.h | |
T * Pop() |
Pop an item from the list or return NULL if the list is empty. | Containers/LockFreeList.h | |
void PopAll
(
ContainerType& Output |
Pop all items from the list. | Containers/LockFreeList.h | |
void Push
(
T* NewItem |
Push an item onto the head of the list. | Containers/LockFreeList.h |