Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Async > API/Runtime/Core/Async/Fundamental
References
| |
|
| Module |
Core |
| Header |
/Engine/Source/Runtime/Core/Public/Async/Fundamental/Task.h |
| Include |
#include "Async/Fundamental/Task.h" |
Syntax
namespace LowLevelTasks
{
enum ETaskFlags
&123;
AllowNothing = 0 << 0,
AllowBusyWaiting = 1 << 0,
AllowCancellation = 1 << 1,
AllowEverything = AllowBusyWaiting | AllowCancellation,
DefaultFlags = AllowEverything,
&125;
}
Values
| Name |
Description |
| AllowNothing |
|
| AllowBusyWaiting |
|
| AllowCancellation |
|
| AllowEverything |
|
| DefaultFlags |
|