Navigation
API > API/Runtime > API/Runtime/AnalyticsET > API/Runtime/AnalyticsET/IAnalyticsProviderET
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void RecordEvent
(
const FString& EventName, |
This class augments RecordEvent with a version that takes the EventName by rvalue reference to save a string copy. | IAnalyticsProviderET.h | |
void RecordEvent
(
FString&& EventName, |
Primary RecordEvent API. Allow move semantics to capture the attributes. | IAnalyticsProviderET.h |
RecordEvent(const FString &, const TArray< FAnalyticsEventAttribute > &)
Description
This class augments RecordEvent with a version that takes the EventName by rvalue reference to save a string copy. Implement the base version in terms of this one.
| Name | RecordEvent |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h |
| Include Path | #include "IAnalyticsProviderET.h" |
virtual void RecordEvent
(
const FString & EventName,
const TArray < FAnalyticsEventAttribute > & Attributes
)
RecordEvent(FString &&, const TArray< FAnalyticsEventAttribute > &)
Description
Primary RecordEvent API. Allow move semantics to capture the attributes.
| Name | RecordEvent |
| Type | function |
| Header File | /Engine/Source/Runtime/Analytics/AnalyticsET/Public/IAnalyticsProviderET.h |
| Include Path | #include "IAnalyticsProviderET.h" |
void RecordEvent
(
FString && EventName,
const TArray < FAnalyticsEventAttribute > & Attributes
)