unreal-engine-5-code-split / ue5-api-Analytics.jsonl
olympusmonsgames's picture
Uploaded 1,226 JSONL files
1c8bcca verified
{"className": "AnalyticsConversion::ToString", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsConversion.h", "description": "", "module": "Analytics", "code": "namespace AnalyticsConversion { template<typename T> decltype(auto) AnalyticsConversion::ToString ( T && Value ) }", "variables": []}
{"className": "FAnalytics::ConfigFromIni::GetValue", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Method that can be bound to an FAnalyticsProviderConfigurationDelegate.", "module": "Analytics", "code": "FString GetValue &40; const FString & KeyName, bool bIsRequired &41; const", "variables": []}
{"className": "FAnalytics::ConfigFromIni::GetDefaultProviderModuleName", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Reads the ProviderModuleName key from the Analytics section of GEngineIni, which is the default, preferred location to look for the analytics provider name. This is purely optional, and you can store that information anywhere you want or merely hardcode the provider module.", "module": "Analytics", "code": "static FName GetDefaultProviderModuleName&40;&41;", "variables": []}
{"className": "FAnalytics::ConfigFromIni::SetSectionNameByBuildType", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Allows setting the INI section name based on the build type passed in. Allows access to the default section values when the application chooses the build type itself.", "module": "Analytics", "code": "void SetSectionNameByBuildType &40; EAnalyticsBuildType InBuildType &41;", "variables": []}
{"className": "FAnalytics::ConfigFromIni::ConfigFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Create a config using the default values: IniName - GEngineIni SectionName (Development) = AnalyticsDevelopment SectionName (Debug) = AnalyticsDebug SectionName (Test) = AnalyticsTest SectionName (Release) = Analytics", "module": "Analytics", "code": "ConfigFromIni&40;&41;", "variables": []}
{"className": "FAnalytics::ConfigFromIni::ConfigFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Create a config AS IF the BuildType matches the one passed in.", "module": "Analytics", "code": "ConfigFromIni &40; EAnalyticsBuildType InBuildType &41;", "variables": []}
{"className": "FAnalytics::ConfigFromIni::ConfigFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Create a config, specifying the Ini name and a single section name for all build types.", "module": "Analytics", "code": "ConfigFromIni &40; const FString & InIniName, const FString & InSectionName &41;", "variables": []}
{"className": "FAnalytics::ConfigFromIni::ConfigFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Create a config, specifying the Ini name and the section name for each build type.", "module": "Analytics", "code": "ConfigFromIni &40; const FString & InIniName, const FString & SectionNameDevelopment, const FString & SectionNameDebug, const FString & SectionNameTest, const FString & SectionNameRelease &41;", "variables": []}
{"className": "ConfigFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "A common way of configuring is from Inis, so this class supports that notion directly by providing a configuration class with a method suitable to be used as an FAnalyticsProviderConfigurationDelegate that reads values from the specified ini and section (based on the BuildType). Also provides a default location to store a provider name, accessed viaGetDefaultProviderModuleName().", "module": "Analytics", "code": "struct ConfigFromIni", "variables": [{"type": "FString", "name": "IniName", "description": "Ini file name to find the config values."}, {"type": "FString", "name": "SectionName", "description": "Section name in the Ini file in which to find the keys."}]}
{"className": "FAnalytics::CreateAnalyticsProvider", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Factory function to create a specific analytics provider by providing the string name of the provider module, which will be dynamically loaded.\nthe analytics provider instance that was created. Could be NULL if initialization failed.", "module": "Analytics", "code": "virtual [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [IAnalyticsProvider](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsProvider) > CreateAnalyticsProvider ( const [FName](API\\Runtime\\Core\\UObject\\FName) & ProviderModuleName, const FAnalyticsProviderConfigurationDelegate & GetConfigValue )", "variables": []}
{"className": "FAnalytics::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Singleton-like access to this module's interface. This is just for convenience! Beware of calling this during the shutdown phase, though. Your module might have been unloaded already.\nReturns singleton instance, loading the module on demand if needed", "module": "Analytics", "code": "static [FAnalytics](API\\Runtime\\Analytics\\FAnalytics) & Get()", "variables": []}
{"className": "FAnalytics::GetConfigValueFromIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Helper for reading configuration values from an INI file (which will be a common scenario). This is exposed here so we're not exporting more classes from the module. It's merely a helper forConfigFromInistruct above.", "module": "Analytics", "code": "virtual [FString](API\\Runtime\\Core\\Containers\\FString) GetConfigValueFromIni ( const [FString](API\\Runtime\\Core\\Containers\\FString) & IniName, const [FString](API\\Runtime\\Core\\Containers\\FString) & SectionName, const [FString](API\\Runtime\\Core\\Containers\\FString) & KeyName, bool bIsRequired )", "variables": []}
{"className": "FAnalytics::GetDefaultConfiguredProvider", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "This implementation is kept in the header file to illustrate how providers are created using configuration delegates.", "module": "Analytics", "code": "virtual [TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [IAnalyticsProvider](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsProvider) > GetDefaultConfiguredProvider()", "variables": []}
{"className": "FAnalytics::IsAvailable", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Checks to see if this module is loaded and ready. It is only valid to callGet()ifIsAvailable()returns true.\nTrue if the module is loaded and ready to use", "module": "Analytics", "code": "static bool IsAvailable()", "variables": []}
{"className": "FAnalytics::WriteConfigValueToIni", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Helper for writing configuration values from to an INI file (which will be a common scenario).", "module": "Analytics", "code": "virtual void WriteConfigValueToIni ( const [FString](API\\Runtime\\Core\\Containers\\FString) & IniName, const [FString](API\\Runtime\\Core\\Containers\\FString) & SectionName, const [FString](API\\Runtime\\Core\\Containers\\FString) & KeyName, const [FString](API\\Runtime\\Core\\Containers\\FString) & Value )", "variables": []}
{"className": "FAnalytics::FAnalytics", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "Module functionality.", "module": "Analytics", "code": "FAnalytics()", "variables": []}
{"className": "FAnalytics", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "To create an analytics provider using all the system defaults, simply call the staticGetDefaultConfiguredProvider().", "module": "Analytics", "code": "class FAnalytics : public [IModuleInterface](API\\Runtime\\Core\\Modules\\IModuleInterface)", "variables": []}
{"className": "FAnalytics::~FAnalytics", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Analytics.h", "description": "", "module": "Analytics", "code": "virtual ~FAnalytics()", "variables": []}
{"className": "AttrTypeEnum", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "enum AttrTypeEnum { String, Number, Boolean, Null, JsonFragment, }", "variables": []}
{"className": "FAnalyticsEventAttribute::GetName", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "const [FString](API\\Runtime\\Core\\Containers\\FString) & GetName() const", "variables": []}
{"className": "FAnalyticsEventAttribute::GetValue", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "const [FString](API\\Runtime\\Core\\Containers\\FString) & GetValue() const", "variables": []}
{"className": "FAnalyticsEventAttribute::IsJsonFragment", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "bool IsJsonFragment() const", "variables": []}
{"className": "FAnalyticsEventAttribute::operator+", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "ALlow aggregation of attributes", "module": "Analytics", "code": "[FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & operator+ ( const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::IsValidAttributeName", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "static bool IsValidAttributeName ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InName )", "variables": []}
{"className": "FAnalyticsEventAttribute::operator+=", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "ALlow aggregation of attributes", "module": "Analytics", "code": "[FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & operator+= ( const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::operator=", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Hack to allow assignment. This class only \"sort of\" acts like an immutable class because the const members prevents assignment, which was not intended when this code was changed.", "module": "Analytics", "code": "[FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & operator= ( const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::operator=", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Hack to allow assignment. This class only \"sort of\" acts like an immutable class because the const members prevents assignment, which was not intended when this code was changed.", "module": "Analytics", "code": "[FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & operator= ( [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) && RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::SetValue", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Allow setting value for any type that supports LexToString", "module": "Analytics", "code": "template<typename ValueType> void SetValue ( ValueType && InValue )", "variables": []}
{"className": "FAnalyticsEventAttribute::SwitchToJsonFragment", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Legacy support for old RecordEventJson API. Don't call this directly.", "module": "Analytics", "code": "void SwitchToJsonFragment()", "variables": []}
{"className": "FAnalyticsEventAttribute::ToString", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "If you need the old AttrValue behavior (i.e. stringify everything), call this function instead.", "module": "Analytics", "code": "[FString](API\\Runtime\\Core\\Containers\\FString) ToString() const", "variables": []}
{"className": "FAnalyticsEventAttribute::FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "The implementation of this class references deprecated members. Don't fire warnings for these. For this reason we actually implement the entire class out-of-line, but still in the header files, so we can wrap all the implementations in DISABLE macro easily.", "module": "Analytics", "code": "FAnalyticsEventAttribute()", "variables": []}
{"className": "FAnalyticsEventAttribute::FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Reinstate the default copy ctor because that one still works fine.", "module": "Analytics", "code": "FAnalyticsEventAttribute ( const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Hack to allow copy ctor using an rvalue-ref. This class only \"sort of\" acts like an immutable class because the const members prevents assignment, which was not intended when this code was changed.", "module": "Analytics", "code": "FAnalyticsEventAttribute ( [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) && RHS )", "variables": []}
{"className": "FAnalyticsEventAttribute::FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "template<typename ValueType> FAnalyticsEventAttribute ( [FString](API\\Runtime\\Core\\Containers\\FString) InName, ValueType && InValue )", "variables": []}
{"className": "FAnalyticsEventAttribute::~FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "~FAnalyticsEventAttribute()", "variables": []}
{"className": "FAnalyticsEventAttribute", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Struct to hold key/value pairs that will be sent as attributes along with analytics events. All values are actually strings, but we provide a convenient constructor that relies on ToStringForAnalytics() to convert common types.", "module": "Analytics", "code": "struct FAnalyticsEventAttribute", "variables": []}
{"className": "FAnalyticsPropertyStore::Contains", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Returns true if the store contains the specified key.", "module": "Analytics", "code": "virtual bool Contains ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Create", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Create a new store, creating the file of the specified capacity and resetting the current state.", "module": "Analytics", "code": "bool Create ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Pathname, uint32 CapacityHint )", "variables": []}
{"className": "ETypeCode", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "enum ETypeCode { I32 = 0x00, U32 = 0x01, I64 = 0x02, U64 = 0x03, Flt = 0x04, Dbl = 0x05, Bool = 0x06, Date = 0x07, Str = 0x08, RawMask = 0x0F, Dead = 0x80, }", "variables": []}
{"className": "FAnalyticsPropertyStore::Flush", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Flushes cached values to disk. Only one thread can flush at a time, causing possible latency if a flush is alreary happenning. Store.Flush();//Flushinthecallingthread,blockuntilallthreadshasfinishedflushing.Store.Flush(false,FTimespan::Zero());//Flushinthecallingthreadifpossible,returnimmediatedlyifanotherthreadisalreadyflushing.Store.Flush(true,FTimespan::Zero());//Flushinabackgroudthreadifnootherthreadisflushing,returnimmediatedlyifanotherflushingtaskisrunning.Store.Flush(true);//Flushinabackgroundthread,mightblockifathreadisalreadyflushing.(Itdoesn'tqueueseveraltasks).\nTrue if the flush was executed (synchronous) or scheduled (asynchronous), false if the operation timed out.", "module": "Analytics", "code": "virtual bool Flush ( bool bAsync, const [FTimespan](API\\Runtime\\Core\\Misc\\FTimespan) & Timeout )", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Reads the specified key value from the store.\nOne of the following code", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int64 & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, [FString](API\\Runtime\\Core\\Containers\\FString) & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & OutValue ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::IsValid", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Returns true is the store was successfully created or loaded.", "module": "Analytics", "code": "bool IsValid() const", "variables": []}
{"className": "FAnalyticsPropertyStore::Load", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Load the specified file in memory, resetting the current state.\ntrue if the file was loaded successuflly, false if the file doesn't exist, the file format/version is invalid or if the file is corrupted (failed checksum).", "module": "Analytics", "code": "bool Load ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Pathname )", "variables": []}
{"className": "FAnalyticsPropertyStore::Num", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Returns the number of elements in the store.", "module": "Analytics", "code": "virtual uint32 Num() const", "variables": []}
{"className": "FAnalyticsPropertyStore::operator=", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) & operator= ( const [FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) & )", "variables": []}
{"className": "FAnalyticsPropertyStore::operator=", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) & operator= ( [FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) && )", "variables": []}
{"className": "FAnalyticsPropertyStore::Remove", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Removes the specified key from the store.\ntrue if the key was removed.", "module": "Analytics", "code": "virtual bool Remove ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key )", "variables": []}
{"className": "FAnalyticsPropertyStore::RemoveAll", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Removes all existing keys from the store.", "module": "Analytics", "code": "virtual void RemoveAll()", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Adds or updates the specified key/value pair. If the key doesn't exist, the key/value pair is added. If the key already exists, the value is updated if the stored value and the specified value types match.EStatusCode::Successif the key was added or updated,EStatusCode::BadTypeif the value type did not match the current value type.", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Conditionnnaly adds or updates the specified key/value pair. The operation is atomic from the caller perspective. The function reads the actual value (if it exists), invoke the ConditionFn callback and write the value back if the condition function returns true. If the key doesn't exist, the actual value passed back to the condition function is null. If the condition function returns true, the proposed value is set, otherwise, the operation is declined and the store remains unchanged.\nOne of the following code", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const int32 *, const int32 &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const uint32 *, const uint32 &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int64 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const int64 *, const int64 &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const uint64 *, const uint64 &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const float *, const float &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const double *, const double &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const bool *, const bool &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FString](API\\Runtime\\Core\\Containers\\FString) & Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const [FString](API\\Runtime\\Core\\Containers\\FString) *, const [FString](API\\Runtime\\Core\\Containers\\FString) &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) *, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) &)> & ConditionFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int64 Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FString](API\\Runtime\\Core\\Containers\\FString) & Value, uint32 CharCountCapacityHint )", "variables": []}
{"className": "FAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & Value )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Updates an exiting value. The operation is atomic from the caller perspective. The function reads the actual value and invoke UpdateFn callback with the actual value. The callback can update the actual value or decline the operation. If the key is not found, the callback is not invoked.\nOne of the following code", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(int32 &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(uint32 &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(uint64 &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(int64 &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(float &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool([FString](API\\Runtime\\Core\\Containers\\FString) &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(bool &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool([FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::VisitAll", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Iterates the keys currently stored and invokes the visitor function for each key, converting the value to its string representation.", "module": "Analytics", "code": "virtual void VisitAll ( const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void([FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) &&)> & VisitFn ) const", "variables": []}
{"className": "FAnalyticsPropertyStore::FAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "FAnalyticsPropertyStore ( const [FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) & )", "variables": []}
{"className": "FAnalyticsPropertyStore::FAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Create an empty store.", "module": "Analytics", "code": "FAnalyticsPropertyStore()", "variables": []}
{"className": "FAnalyticsPropertyStore::FAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "FAnalyticsPropertyStore ( [FAnalyticsPropertyStore](API\\Runtime\\Analytics\\FAnalyticsPropertyStore) && )", "variables": []}
{"className": "FAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual [EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(double &)> & UpdateFn )", "variables": []}
{"className": "FAnalyticsPropertyStore::~FAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual ~FAnalyticsPropertyStore()", "variables": []}
{"className": "FJsonFragment::FJsonFragment", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "FJsonFragment ( [FString](API\\Runtime\\Core\\Containers\\FString) && StringRef )", "variables": []}
{"className": "FAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h", "description": "Implements a fast key/value database to store the metrics gathered to create the session summary event. The store is buffered in memory until it is flushed to disk by callingFlush(). It is not designed to handle millions of key/value pairs, but rather a small subset that fits in memory. The implementation reserve disk space ahead of time and can usually perform in-place update. Setting or getting intrinsic types (int32, uint32, int64, uint64, float, double, bool as well asFDateTime) doesn't allocate memory. The string time is often updated in place if enough capacity was reserved. All store operations are thread safe and atomic from the caller perspective.", "module": "Analytics", "code": "class FAnalyticsPropertyStore : public [IAnalyticsPropertyStore](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore)", "variables": []}
{"className": "FJsonFragment", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "struct FJsonFragment", "variables": [{"type": "FString", "name": "FragmentString", "description": ""}]}
{"className": "FJsonNull", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "", "module": "Analytics", "code": "struct FJsonNull", "variables": []}
{"className": "ImplMakeAnalyticsEventAttributeArray::MakeArray", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Recursion terminator. Empty list.", "module": "Analytics", "code": "namespace ImplMakeAnalyticsEventAttributeArray { template<typename Allocator> void ImplMakeAnalyticsEventAttributeArray::MakeArray ( [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute), Allocator > & Attrs ) }", "variables": []}
{"className": "ImplMakeAnalyticsEventAttributeArray::MakeArray", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h", "description": "Recursion terminator. Convert the key/value pair to analytics strings.", "module": "Analytics", "code": "namespace ImplMakeAnalyticsEventAttributeArray { template<typename Allocator, typename KeyType, typename ValueType> void ImplMakeAnalyticsEventAttributeArray::MakeArray ( [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute), Allocator > & Attrs, KeyType && Key, ValueType && Value ) }", "variables": []}
{"className": "IAnalyticsPropertyStore::Contains", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Returns true if the store contains the specified key.", "module": "Analytics", "code": "bool Contains ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Reads the specified key value from the store.\nOne of the following code", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Flush", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Flushes cached values to persistent storage.\nTrue if the flush was executed (synchronous) or scheduled (asynchronous), false if the operation timed out.", "module": "Analytics", "code": "bool Flush ( bool bAsync, const [FTimespan](API\\Runtime\\Core\\Misc\\FTimespan) & Timeout )", "variables": []}
{"className": "EStatusCode", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "The list of store operation outcome.", "module": "Analytics", "code": "enum EStatusCode { Success, NotFound, BadType, Declined, }", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int64 & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, [FString](API\\Runtime\\Core\\Containers\\FString) & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & OutValue ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::Num", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Returns the number of elements in the store.", "module": "Analytics", "code": "uint32 Num() const", "variables": []}
{"className": "IAnalyticsPropertyStore::Remove", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Removes the specified key from the store.\ntrue if the key was removed.", "module": "Analytics", "code": "bool Remove ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key )", "variables": []}
{"className": "IAnalyticsPropertyStore::RemoveAll", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Removes all existing keys from the store.", "module": "Analytics", "code": "void RemoveAll()", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Adds or updates the specified key/value pair. If the key doesn't exist, the key/value pair is added. If the key already exists, the value is updated if the stored value and the specified value types match.EStatusCode::Successif the key was added or updated,EStatusCode::BadTypeif the value type did not match the current value type.", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const uint32 *, const uint32 &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Conditionnnaly adds or updates the specified key/value pair. The operation is atomic from the caller perspective. The function reads the actual value (if it exists), invoke the ConditionFn callback and write the value back if the condition function returns true. If the key doesn't exist, the actual value passed back to the condition function is null. If the condition function returns true, the proposed value is set, otherwise, the operation is declined and the store remains unchanged.\nOne of the following code", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int32 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const int32 *, const int32 &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, int64 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const int64 *, const int64 &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const uint64 *, const uint64 &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const double *, const double &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const float *, const float &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const bool *, const bool &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FString](API\\Runtime\\Core\\Containers\\FString) & Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const [FString](API\\Runtime\\Core\\Containers\\FString) *, const [FString](API\\Runtime\\Core\\Containers\\FString) &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) *, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) &)> & ConditionFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint32 Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, uint64 Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, float Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, double Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, bool Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) & Value )", "variables": []}
{"className": "IAnalyticsPropertyStore::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [FString](API\\Runtime\\Core\\Containers\\FString) & Value, uint32 CharCountCapacityHint )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Updates an exiting value. The operation is atomic from the caller perspective. The function reads the actual value and invoke UpdateFn callback with the actual value. The callback can update the actual value or decline the operation. If the key is not found, the callback is not invoked.\nOne of the following code", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(int32 &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(uint32 &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(uint64 &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(int64 &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(float &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(double &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool([FString](API\\Runtime\\Core\\Containers\\FString) &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(bool &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Key, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool([FDateTime](API\\Runtime\\Core\\Misc\\FDateTime) &)> & UpdateFn )", "variables": []}
{"className": "IAnalyticsPropertyStore::VisitAll", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Iterates the keys currently stored and invokes the visitor function for each key, converting the value to its string representation.", "module": "Analytics", "code": "void VisitAll ( const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< void([FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) &&)> & VisitFn ) const", "variables": []}
{"className": "IAnalyticsPropertyStore::~IAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "virtual ~IAnalyticsPropertyStore()", "variables": []}
{"className": "IAnalyticsPropertyStore", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Implements a fast type safe key/value database to store analytics properties collected during a session.", "module": "Analytics", "code": "class IAnalyticsPropertyStore", "variables": []}
{"className": "IAnalyticsProvider::EndSession", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Ends the session. Usually no need to call explicitly, as the provider should do this for you when the instance is destroyed.", "module": "Analytics", "code": "void EndSession()", "variables": []}
{"className": "IAnalyticsProvider::FlushEvents", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support explicitly sending any cached events. In which case this method does nothing.", "module": "Analytics", "code": "void FlushEvents()", "variables": []}
{"className": "IAnalyticsProvider::GetSessionID", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Gets the opaque session identifier string for the provider.", "module": "Analytics", "code": "[FString](API\\Runtime\\Core\\Containers\\FString) GetSessionID() const", "variables": []}
{"className": "IAnalyticsProvider::GetUserID", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Gset the current UserID. Use -ANALYTICSUSERID=command line to force the provider to use a specific UserID for this run.", "module": "Analytics", "code": "[FString](API\\Runtime\\Core\\Containers\\FString) GetUserID() const", "variables": []}
{"className": "IAnalyticsProvider::RecordCurrencyGiven", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support currency events. In this case this method is equivalent to sending a regular event with name \"Currency Given\".", "module": "Analytics", "code": "virtual void RecordCurrencyGiven ( const [FString](API\\Runtime\\Core\\Containers\\FString) & GameCurrencyType, int GameCurrencyAmount )", "variables": []}
{"className": "IAnalyticsProvider::RecordCurrencyGiven", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support currency events. In this case this method is equivalent to sending a regular event with name \"Currency Given\".", "module": "Analytics", "code": "virtual void RecordCurrencyGiven ( const [FString](API\\Runtime\\Core\\Containers\\FString) & GameCurrencyType, int GameCurrencyAmount, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::RecordCurrencyPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support item purchase events. In this case this method is equivalent to sending a regular event with name \"Item Purchase\".", "module": "Analytics", "code": "virtual void RecordCurrencyPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & GameCurrencyType, int GameCurrencyAmount )", "variables": []}
{"className": "IAnalyticsProvider::RecordCurrencyPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support currency events. In this case this method is equivalent to sending a regular event with name \"Currency Purchase\".", "module": "Analytics", "code": "virtual void RecordCurrencyPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & GameCurrencyType, int GameCurrencyAmount, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::RecordCurrencyPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support currency events. In this case this method is equivalent to sending a regular event with name \"Currency Purchase\".", "module": "Analytics", "code": "virtual void RecordCurrencyPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & GameCurrencyType, int GameCurrencyAmount, const [FString](API\\Runtime\\Core\\Containers\\FString) & RealCurrencyType, float RealMoneyCost, const [FString](API\\Runtime\\Core\\Containers\\FString) & PaymentProvider )", "variables": []}
{"className": "IAnalyticsProvider::RecordError", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support all events. In this case this method is equivalent to sending a regular event with name \"Game Error\".", "module": "Analytics", "code": "virtual void RecordError ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Error )", "variables": []}
{"className": "IAnalyticsProvider::RecordError", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support all events. In this case this method is equivalent to sending a regular event with name \"Game Error\".", "module": "Analytics", "code": "virtual void RecordError ( const [FString](API\\Runtime\\Core\\Containers\\FString) & Error, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::RecordEvent", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Overload for RecordEvent that takes no parameters", "module": "Analytics", "code": "void RecordEvent ( const [FString](API\\Runtime\\Core\\Containers\\FString) & EventName )", "variables": []}
{"className": "IAnalyticsProvider::RecordEvent", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Records a named event with an array of attributes", "module": "Analytics", "code": "void RecordEvent ( const [FString](API\\Runtime\\Core\\Containers\\FString) & EventName, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & Attributes )", "variables": []}
{"className": "IAnalyticsProvider::RecordEvent", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Overload for RecordEvent that takes a single attribute", "module": "Analytics", "code": "void RecordEvent ( const [FString](API\\Runtime\\Core\\Containers\\FString) & EventName, const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & Attribute )", "variables": []}
{"className": "IAnalyticsProvider::RecordEvent", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Overload for RecordEvent that takes a single name/value pair", "module": "Analytics", "code": "void RecordEvent ( const [FString](API\\Runtime\\Core\\Containers\\FString) & EventName, const [FString](API\\Runtime\\Core\\Containers\\FString) & ParamName, const [FString](API\\Runtime\\Core\\Containers\\FString) & ParamValue )", "variables": []}
{"className": "IAnalyticsProvider::RecordItemPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support item purchase events. In this case this method is equivalent to sending a regular event with name \"Item Purchase\".", "module": "Analytics", "code": "void RecordItemPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ItemId, int ItemQuantity )", "variables": []}
{"className": "IAnalyticsProvider::RecordItemPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support item purchase events. In this case this method is equivalent to sending a regular event with name \"Item Purchase\".", "module": "Analytics", "code": "virtual void RecordItemPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ItemId, int ItemQuantity, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::RecordItemPurchase", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support item purchase events. In this case this method is equivalent to sending a regular event with name \"Item Purchase\".", "module": "Analytics", "code": "virtual void RecordItemPurchase ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ItemId, const [FString](API\\Runtime\\Core\\Containers\\FString) & Currency, int PerItemCost, int ItemQuantity )", "variables": []}
{"className": "IAnalyticsProvider::RecordProgress", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support all events. In this case this method is equivalent to sending a regular event with name \"Progression\".", "module": "Analytics", "code": "virtual void RecordProgress ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ProgressType, const [FString](API\\Runtime\\Core\\Containers\\FString) & ProgressHierarchy )", "variables": []}
{"className": "IAnalyticsProvider::RecordProgress", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support all events. In this case this method is equivalent to sending a regular event with name \"Progression\".", "module": "Analytics", "code": "virtual void RecordProgress ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ProgressType, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FString](API\\Runtime\\Core\\Containers\\FString) > & ProgressHierarchy, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::RecordProgress", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Note that not all providers support all events. In this case this method is equivalent to sending a regular event with name \"Progression\".", "module": "Analytics", "code": "virtual void RecordProgress ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ProgressType, const [FString](API\\Runtime\\Core\\Containers\\FString) & ProgressHierarchy, const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & EventAttrs )", "variables": []}
{"className": "IAnalyticsProvider::SetAge", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Sets the location the game believes the user is playing in as part of the session", "module": "Analytics", "code": "virtual void SetAge ( const int32 InAge )", "variables": []}
{"className": "IAnalyticsProvider::SetBuildInfo", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Sets a user defined string as the build information/version for the session", "module": "Analytics", "code": "virtual void SetBuildInfo ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InBuildInfo )", "variables": []}
{"className": "IAnalyticsProvider::SetGender", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Sets the gender the game believes the user is as part of the session", "module": "Analytics", "code": "virtual void SetGender ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InGender )", "variables": []}
{"className": "IAnalyticsProvider::SetLocation", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Sets the location the game believes the user is playing in as part of the session", "module": "Analytics", "code": "virtual void SetLocation ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InLocation )", "variables": []}
{"className": "IAnalyticsProvider::SetSessionID", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Sets the session ID of the analytics session. This is not something you normally have to do, except for circumstances where you need to send events on behalf of another user (like a dedicated server sending events for the connected clients).", "module": "Analytics", "code": "bool SetSessionID ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InSessionID )", "variables": []}
{"className": "IAnalyticsProvider::SetUserID", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Set the UserID for use with analytics. Some providers require a unique ID to be provided when supplying events, and some providers create their own. If you are using a provider that requires you to supply the ID, use this method to set it.", "module": "Analytics", "code": "void SetUserID ( const [FString](API\\Runtime\\Core\\Containers\\FString) & InUserID )", "variables": []}
{"className": "IAnalyticsProvider::StartSession", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Starts a session. It's technically legal to send events without starting a session. The use case is for backends and dedicated servers to send events on behalf of a user without technically affecting the session length of the local player. Local players log in and start/end the session, but remote players simply call SetUserID and start sending events, which is legal and analytics providers should gracefully handle this. Repeated calls to this method will be ignored.\ntrue if the session started successfully.", "module": "Analytics", "code": "bool StartSession()", "variables": []}
{"className": "IAnalyticsProvider::StartSession", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Starts a session. See parameterless-version for contract details.", "module": "Analytics", "code": "bool StartSession ( const [TArray](API\\Runtime\\Core\\Containers\\TArray)< [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) > & Attributes )", "variables": []}
{"className": "IAnalyticsProvider::StartSession", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Overload for StartSession that takes a single name/value pair", "module": "Analytics", "code": "bool StartSession ( const [FString](API\\Runtime\\Core\\Containers\\FString) & ParamName, const [FString](API\\Runtime\\Core\\Containers\\FString) & ParamValue )", "variables": []}
{"className": "IAnalyticsProvider::StartSession", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "Overload for StartSession that takes a single attribute", "module": "Analytics", "code": "bool StartSession ( const [FAnalyticsEventAttribute](API\\Runtime\\Analytics\\FAnalyticsEventAttribute) & Attribute )", "variables": []}
{"className": "IAnalyticsProvider::~IAnalyticsProvider", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "", "module": "Analytics", "code": "virtual ~IAnalyticsProvider()", "variables": []}
{"className": "IAnalyticsProvider", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProvider.h", "description": "There are several other methods to record specific types of events. They were added for legacy reasons to support specific third party implementations. Derived classes generally do not have to worry about them.", "module": "Analytics", "code": "class IAnalyticsProvider", "variables": []}
{"className": "IAnalyticsProviderModule::CreateAnalyticsProvider", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProviderModule.h", "description": "", "module": "Analytics", "code": "[TSharedPtr](API\\Runtime\\Core\\Templates\\TSharedPtr)< [IAnalyticsProvider](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsProvider) > CreateAnalyticsProvider ( const FAnalyticsProviderConfigurationDelegate & GetConfigValue ) const", "variables": []}
{"className": "IAnalyticsProviderModule", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsProviderModule.h", "description": "Generic interface for an analytics provider. Other modules can define more and register them with this module.", "module": "Analytics", "code": "class IAnalyticsProviderModule : public [IModuleInterface](API\\Runtime\\Core\\Modules\\IModuleInterface)", "variables": []}
{"className": "TAnalyticsProperty::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[IAnalyticsPropertyStore::EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Get ( [IAnalyticsPropertyStore](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore) * Store, T & OutValue ) const", "variables": []}
{"className": "TAnalyticsProperty::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[IAnalyticsPropertyStore::EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( [IAnalyticsPropertyStore](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore) * Store, const T & Value ) const", "variables": []}
{"className": "TAnalyticsProperty::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[IAnalyticsPropertyStore::EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Set ( [IAnalyticsPropertyStore](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore) * Store, const T & Value, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(const T *, const T &)> & ConditionFn ) const", "variables": []}
{"className": "TAnalyticsProperty::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "[IAnalyticsPropertyStore::EStatusCode](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore\\EStatusCode) Update ( [IAnalyticsPropertyStore](API\\Runtime\\Analytics\\Interfaces\\IAnalyticsPropertyStore) * Store, const [TFunction](API\\Runtime\\Core\\GenericPlatform\\TFunction)< bool(T &InOutValue)> & UpdateFn ) const", "variables": []}
{"className": "TAnalyticsProperty::TAnalyticsProperty", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "TAnalyticsProperty ( const TCHAR * InKey )", "variables": []}
{"className": "TAnalyticsProperty", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "TAnalyticsProperty< FString >", "module": "Analytics", "code": "template<typename T> class TAnalyticsProperty", "variables": [{"type": "constFString", "name": "Key", "description": ""}]}
{"className": "TAnalyticsProperty< FString >::Get", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "IAnalyticsPropertyStore::EStatusCode Get &40; IAnalyticsPropertyStore &42; Store, FString & OutValue &41; const", "variables": []}
{"className": "TAnalyticsProperty< FString >::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "IAnalyticsPropertyStore::EStatusCode Set &40; IAnalyticsPropertyStore &42; Store, const FString & Value, uint32 CharCountCapacityHint &41; const", "variables": []}
{"className": "TAnalyticsProperty< FString >::Set", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "IAnalyticsPropertyStore::EStatusCode Set &40; IAnalyticsPropertyStore &42; Store, const FString & Value, const TFunction< bool(const FString &42;, const FString &)> & ConditionFn &41; const", "variables": []}
{"className": "TAnalyticsProperty< FString >::TAnalyticsProperty", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "TAnalyticsProperty &40; const TCHAR &42; InKey &41;", "variables": []}
{"className": "TAnalyticsProperty< FString >::Update", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "", "module": "Analytics", "code": "IAnalyticsPropertyStore::EStatusCode Update &40; IAnalyticsPropertyStore &42; Store, const TFunction< bool(FString &InOutValue)> & UpdateFn &41; const", "variables": []}
{"className": "TAnalyticsProperty< FString >", "headerPath": "/Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h", "description": "Specialization forFStringbecause the caller can specifies a capacity when adding a string.", "module": "Analytics", "code": "template<> class TAnalyticsProperty< FString >", "variables": [{"type": "constFString", "name": "Key", "description": ""}]}