TaskGraph.TaskPriorities.IoDispatcherAsyncTasks
TaskGraph.TaskPriorities.IoDispatcherAsyncTasks
#Overview
name: TaskGraph.TaskPriorities.IoDispatcherAsyncTasks
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Task and thread priority for IoDispatcher decompression.\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.IoDispatcherAsyncTasks 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/PakFile/Private/IoDispatcherFileBackend.cpp:1491
Scope: file
Source code excerpt:
FAutoConsoleTaskPriority CPrio_IoDispatcherTaskPriority(
TEXT("TaskGraph.TaskPriorities.IoDispatcherAsyncTasks"),
TEXT("Task and thread priority for IoDispatcher decompression."),
ENamedThreads::BackgroundThreadPriority, // if we have background priority task threads, then use them...
ENamedThreads::NormalTaskPriority, // .. at normal task priority
ENamedThreads::NormalTaskPriority // if we don't have background threads, then use normal priority threads at normal task priority instead
);