Navigation
API > API/Runtime > API/Runtime/Core
| Name | TLockFreePointerListLIFOPad |
| 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 TLockFreePointerListLIFOPad : private FLockFreePointerListLIFOBase< T, TPaddingForCacheContention >
Inheritance Hierarchy
- FLockFreePointerListLIFOBase → TLockFreePointerListLIFOPad
Derived Classes
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 PopAllAndApply
(
FunctorType InFunctor |
Pop all items from the list and call a functor for each of them. | Containers/LockFreeList.h | |
void Push
(
T* NewItem |
Push an item onto the head of the list. | Containers/LockFreeList.h |