Navigation
Unreal Engine C++ API Reference > Runtime > Core > Templates
References
Module | Core |
Header | /Engine/Source/Runtime/Core/Public/Templates/Atomic.h |
Include | #include "Templates/Atomic.h" |
Syntax
enum EMemoryOrder
{
Relaxed,
SequentiallyConsistent,
Count,
}
Values
Name | Description |
---|---|
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 |