Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Async
References
|
|
Module |
Core |
Header |
/Engine/Source/Runtime/Core/Public/Async/TaskGraphInterfaces.h |
Include |
#include "Async/TaskGraphInterfaces.h" |
Syntax
namespace ESubsequentsMode
{
enum Type
&123;
TrackSubsequents,
FireAndForget,
&125;
}
Values
Name |
Description |
TrackSubsequents |
Necessary when another task will depend on this task. |
FireAndForget |
Can be used to save task graph overhead when firing off a task that will not be a dependency of other tasks. |