Choose your operating system:
Windows
macOS
Linux
Module |
|
Header |
/Engine/Source/Runtime/Core/Public/Async/TaskGraphInterfaces.h |
Include |
#include "Async/TaskGraphInterfaces.h" |
namespace ESubsequentsMode
{
enum Type
{
TrackSubsequents,
FireAndForget,
}
}
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. |