Navigation
API > API/Runtime > API/Runtime/Core
Special flags that can be associated with queued work.
| Name | EQueuedWorkFlags |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/IQueuedWork.h |
| Include Path | #include "Misc/IQueuedWork.h" |
Syntax
enum EQueuedWorkFlags
{
None,
DoNotRunInsideBusyWait = (1 << 0),
Count,
}
Values
| Name | Remarks |
|---|---|
| None | |
| DoNotRunInsideBusyWait | Tells the scheduler if this task is allowed to run during another task's busy wait. |
| Count |