Navigation
API > API/Runtime > API/Runtime/NetCore > API/Runtime/NetCore/FNetAnalyticsAggregator
Description
Use REGISTER_NET_ANALYTICS instead. Internal function, which registers a net analytics data holder, with an associated key name, and does type checking to ensure there have been no mixups with the data holder type.
NOTE: May return nullptr! Analytics can be selectively enabled/disabled, based on the specified analytics data name.
| Name | RegisterAnalyticsData_Internal |
| Type | function |
| Header File | /Engine/Source/Runtime/Net/Core/Public/Net/Core/Analytics/NetAnalytics.h |
| Include Path | #include "Net/Core/Analytics/NetAnalytics.h" |
| Source | /Engine/Source/Runtime/Net/Core/Private/Net/Core/Analytics/NetAnalytics.cpp |
TNetAnalyticsDataPtr RegisterAnalyticsData_Internal
(
TNetAnalyticsDataRef<> InData,
const FName & InDataName,
FString InTypeName
)
Returns the newly added analytics data shared reference
Parameters
| Name | Remarks |
|---|---|
| InData | The analytics data shared reference to be registered |
| InDataName | The name given for referencing the analytics data |
| InTypeName | Compile-time derived type name for the analytics data - for type checking |