TaskGraph.TaskPriorities.HiPriAsyncTickTaskPriority
TaskGraph.TaskPriorities.HiPriAsyncTickTaskPriority
#Overview
name: TaskGraph.TaskPriorities.HiPriAsyncTickTaskPriority
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Task and thread priority for async ticks that are high priority.\nArguments are three characters: [ThreadPriority][TaskPriority][TaskPriorityIfForcedToNormalThreadPriority] where ThreadPriority is \'h\' or \'n\' or \'b\' (high/normal/background) and TaskPriority is \'h\' or \'n\' (high/normal). Example: TaskGraph.TaskPriorities.HiPriAsyncTickTaskPriority bnh
It is referenced in 1
C++ source file.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Source/Runtime/Engine/Private/TickTaskManager.cpp:94
Scope: file
Source code excerpt:
FAutoConsoleTaskPriority CPrio_HiPriAsyncTickTaskPriority(
TEXT("TaskGraph.TaskPriorities.HiPriAsyncTickTaskPriority"),
TEXT("Task and thread priority for async ticks that are high priority."),
ENamedThreads::HighThreadPriority, // if we have high priority task threads, then use them...
ENamedThreads::NormalTaskPriority, // .. at normal task priority
ENamedThreads::HighTaskPriority // if we don't have hi pri threads, then use normal priority threads at high task priority instead
);