ESubsequentsMode::Type

Choose your operating system:

Windows

macOS

Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Async/TaskGraphInterfaces.h

Include

#include "Async/TaskGraphInterfaces.h"

Syntax

namespace ESubsequentsMode
{
    enum Type
    {
        TrackSubsequents,
        FireAndForget,
    }
}

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.