Navigation
API > API/Runtime > API/Runtime/Core
| |
|
| Name |
EMemoryOrder |
| Type |
enum |
| Header File |
/Engine/Source/Runtime/Core/Public/Templates/Atomic.h |
| Include Path |
#include "Templates/Atomic.h" |
Syntax
enum EMemoryOrder
{
Relaxed,
SequentiallyConsistent,
Count,
}
Values
| Name |
Remarks |
| Relaxed |
Provides no guarantees that the operation will be ordered relative to any other operation. |
| SequentiallyConsistent |
Establishes a single total order of all other atomic operations marked with this. |
| Count |
|