net.TrackQueuedActorThreshold

net.TrackQueuedActorThreshold

#Overview

name: net.TrackQueuedActorThreshold

This variable is created as a Console Variable (cvar).

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/PackageMapClient.cpp:161

Scope: file

Source code excerpt:

static float GPackageMapTrackQueuedActorThreshold = 0.f;
static FAutoConsoleVariableRef CVarTrackQueuedActorTreshold(
	TEXT("net.TrackQueuedActorThreshold"),
	GPackageMapTrackQueuedActorThreshold,
	TEXT("When > 0, any actors that spend longer than the threshold with queued bunches will be tracked."
		" Threshold in seconds, @see UPackageMap::ConsumeDelinquencyAnalytics. Used for Debugging and Analytics")
);

static float GPackageMapTrackQueuedActorThresholdOwner = 0.f;