Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FTaskGraphInterface
Used to define what ProcessUntilTasksComplete should do next
| Name | EProcessTasksOperation |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Async/TaskGraphInterfaces.h |
| Include Path | #include "Async/TaskGraphInterfaces.h" |
Syntax
enum EProcessTasksOperation
{
ProcessAllOtherTasks,
ProcessOneOtherTask,
ProcessNamedThreadTasks,
WaitUntilComplete,
StopProcessing,
}
Values
| Name | Remarks |
|---|---|
| ProcessAllOtherTasks | Default behavior with no update callback, try to process all other thread thread tasks in the queue before checking named thread tasks |
| ProcessOneOtherTask | Try to process other thread tasks, but immediately process named thread tasks after completing one |
| ProcessNamedThreadTasks | Immediately try to process named thread tasks and call update again |
| WaitUntilComplete | Stop any idle processing and wait on this thread until all tasks are complete, update is not called again |
| StopProcessing | Stop processing entirely and return, like if ProcessingTimeout has expired |