TaskGraph.TaskPriorities.ClearAudioChunkCacheReadRequest
TaskGraph.TaskPriorities.ClearAudioChunkCacheReadRequest
#Overview
name: TaskGraph.TaskPriorities.ClearAudioChunkCacheReadRequest
This variable is created as a Console Variable (cvar).
- type:
Var
- help:
Task and thread priority for an async task that clears FCacheElement::ReadRequest\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.ClearAudioChunkCacheReadRequest 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/AudioStreamingCache.cpp:1699
Scope: file
Source code excerpt:
static FAutoConsoleTaskPriority CPrio_ClearAudioChunkCacheReadRequest(
TEXT("TaskGraph.TaskPriorities.ClearAudioChunkCacheReadRequest"),
TEXT("Task and thread priority for an async task that clears FCacheElement::ReadRequest"),
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
);