className
stringlengths 1
167
| headerPath
stringlengths 14
166
| description
stringlengths 0
1.62k
| module
stringlengths 3
36
| code
stringlengths 0
11.4k
| variables
listlengths 0
395
|
---|---|---|---|---|---|
FAnalyticsEventAttribute::GetName | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | const [FString](API\Runtime\Core\Containers\FString) & GetName() const | []
|
|
FAnalyticsEventAttribute::GetValue | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | const [FString](API\Runtime\Core\Containers\FString) & GetValue() const | []
|
|
FAnalyticsEventAttribute::IsJsonFragment | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | bool IsJsonFragment() const | []
|
|
FAnalyticsEventAttribute::operator+ | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | ALlow aggregation of attributes | Analytics | [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & operator+ ( const [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & RHS ) | []
|
FAnalyticsEventAttribute::IsValidAttributeName | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | static bool IsValidAttributeName ( const [FString](API\Runtime\Core\Containers\FString) & InName ) | []
|
|
FAnalyticsEventAttribute::operator+= | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | ALlow aggregation of attributes | Analytics | [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & operator+= ( const [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & RHS ) | []
|
FAnalyticsEventAttribute::operator= | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | 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. | Analytics | [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & operator= ( const [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & RHS ) | []
|
FAnalyticsEventAttribute::operator= | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | 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. | Analytics | [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & operator= ( [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) && RHS ) | []
|
FAnalyticsEventAttribute::SetValue | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Allow setting value for any type that supports LexToString | Analytics | template<typename ValueType> void SetValue ( ValueType && InValue ) | []
|
FAnalyticsEventAttribute::SwitchToJsonFragment | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Legacy support for old RecordEventJson API. Don't call this directly. | Analytics | void SwitchToJsonFragment() | []
|
FAnalyticsEventAttribute::ToString | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | If you need the old AttrValue behavior (i.e. stringify everything), call this function instead. | Analytics | [FString](API\Runtime\Core\Containers\FString) ToString() const | []
|
FAnalyticsEventAttribute::FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | 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. | Analytics | FAnalyticsEventAttribute() | []
|
FAnalyticsEventAttribute::FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Reinstate the default copy ctor because that one still works fine. | Analytics | FAnalyticsEventAttribute ( const [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) & RHS ) | []
|
FAnalyticsEventAttribute::FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | 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. | Analytics | FAnalyticsEventAttribute ( [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) && RHS ) | []
|
FAnalyticsEventAttribute::FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | template<typename ValueType> FAnalyticsEventAttribute ( [FString](API\Runtime\Core\Containers\FString) InName, ValueType && InValue ) | []
|
|
FAnalyticsEventAttribute::~FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | ~FAnalyticsEventAttribute() | []
|
|
FAnalyticsEventAttribute | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | 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. | Analytics | struct FAnalyticsEventAttribute | []
|
FAnalyticsPropertyStore::Contains | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Returns true if the store contains the specified key. | Analytics | virtual bool Contains ( const [FString](API\Runtime\Core\Containers\FString) & Key ) const | []
|
FAnalyticsPropertyStore::Create | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Create a new store, creating the file of the specified capacity and resetting the current state. | Analytics | bool Create ( const [FString](API\Runtime\Core\Containers\FString) & Pathname, uint32 CapacityHint ) | []
|
ETypeCode | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | enum ETypeCode { I32 = 0x00, U32 = 0x01, I64 = 0x02, U64 = 0x03, Flt = 0x04, Dbl = 0x05, Bool = 0x06, Date = 0x07, Str = 0x08, RawMask = 0x0F, Dead = 0x80, } | []
|
|
FAnalyticsPropertyStore::Flush | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | 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).
True if the flush was executed (synchronous) or scheduled (asynchronous), false if the operation timed out. | Analytics | virtual bool Flush ( bool bAsync, const [FTimespan](API\Runtime\Core\Misc\FTimespan) & Timeout ) | []
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Reads the specified key value from the store.
One of the following code | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, int32 & OutValue ) const | []
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint32 & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, int64 & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint64 & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, float & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, double & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, bool & OutValue ) const | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 | []
|
|
FAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 | []
|
|
FAnalyticsPropertyStore::IsValid | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Returns true is the store was successfully created or loaded. | Analytics | bool IsValid() const | []
|
FAnalyticsPropertyStore::Load | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Load the specified file in memory, resetting the current state.
true 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). | Analytics | bool Load ( const [FString](API\Runtime\Core\Containers\FString) & Pathname ) | []
|
FAnalyticsPropertyStore::Num | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Returns the number of elements in the store. | Analytics | virtual uint32 Num() const | []
|
FAnalyticsPropertyStore::operator= | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) & operator= ( const [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) & ) | []
|
|
FAnalyticsPropertyStore::operator= | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) & operator= ( [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) && ) | []
|
|
FAnalyticsPropertyStore::Remove | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Removes the specified key from the store.
true if the key was removed. | Analytics | virtual bool Remove ( const [FString](API\Runtime\Core\Containers\FString) & Key ) | []
|
FAnalyticsPropertyStore::RemoveAll | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Removes all existing keys from the store. | Analytics | virtual void RemoveAll() | []
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | 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. | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, int32 Value ) | []
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | 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.
One of the following code | Analytics | 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 ) | []
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint32 Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, int64 Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint64 Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, float Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, double Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, bool Value ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | 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.
One of the following code | Analytics | 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 ) | []
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::VisitAll | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Iterates the keys currently stored and invokes the visitor function for each key, converting the value to its string representation. | Analytics | virtual void VisitAll ( const [TFunction](API\Runtime\Core\GenericPlatform\TFunction)< void([FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute) &&)> & VisitFn ) const | []
|
FAnalyticsPropertyStore::FAnalyticsPropertyStore | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | FAnalyticsPropertyStore ( const [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) & ) | []
|
|
FAnalyticsPropertyStore::FAnalyticsPropertyStore | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Create an empty store. | Analytics | FAnalyticsPropertyStore() | []
|
FAnalyticsPropertyStore::FAnalyticsPropertyStore | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | FAnalyticsPropertyStore ( [FAnalyticsPropertyStore](API\Runtime\Analytics\FAnalyticsPropertyStore) && ) | []
|
|
FAnalyticsPropertyStore::Update | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | 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 ) | []
|
|
FAnalyticsPropertyStore::~FAnalyticsPropertyStore | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | Analytics | virtual ~FAnalyticsPropertyStore() | []
|
|
FJsonFragment::FJsonFragment | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | FJsonFragment ( [FString](API\Runtime\Core\Containers\FString) && StringRef ) | []
|
|
FAnalyticsPropertyStore | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsPropertyStore.h | 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. | Analytics | class FAnalyticsPropertyStore : public [IAnalyticsPropertyStore](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore) | []
|
FJsonFragment | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | struct FJsonFragment | [
{
"type": "FString",
"name": "FragmentString",
"description": ""
}
]
|
|
FJsonNull | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Analytics | struct FJsonNull | []
|
|
ImplMakeAnalyticsEventAttributeArray::MakeArray | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Recursion terminator. Empty list. | Analytics | namespace ImplMakeAnalyticsEventAttributeArray { template<typename Allocator> void ImplMakeAnalyticsEventAttributeArray::MakeArray ( [TArray](API\Runtime\Core\Containers\TArray)< [FAnalyticsEventAttribute](API\Runtime\Analytics\FAnalyticsEventAttribute), Allocator > & Attrs ) } | []
|
ImplMakeAnalyticsEventAttributeArray::MakeArray | /Engine/Source/Runtime/Analytics/Analytics/Public/AnalyticsEventAttribute.h | Recursion terminator. Convert the key/value pair to analytics strings. | Analytics | 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 ) } | []
|
IAnalyticsPropertyStore::Contains | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Returns true if the store contains the specified key. | Analytics | bool Contains ( const [FString](API\Runtime\Core\Containers\FString) & Key ) const | []
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Reads the specified key value from the store.
One of the following code | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, int32 & OutValue ) const | []
|
IAnalyticsPropertyStore::Flush | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Flushes cached values to persistent storage.
True if the flush was executed (synchronous) or scheduled (asynchronous), false if the operation timed out. | Analytics | bool Flush ( bool bAsync, const [FTimespan](API\Runtime\Core\Misc\FTimespan) & Timeout ) | []
|
EStatusCode | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | The list of store operation outcome. | Analytics | enum EStatusCode { Success, NotFound, BadType, Declined, } | []
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint32 & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, int64 & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, uint64 & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, float & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, double & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, bool & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, [FString](API\Runtime\Core\Containers\FString) & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Get | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Get ( const [FString](API\Runtime\Core\Containers\FString) & Key, [FDateTime](API\Runtime\Core\Misc\FDateTime) & OutValue ) const | []
|
|
IAnalyticsPropertyStore::Num | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Returns the number of elements in the store. | Analytics | uint32 Num() const | []
|
IAnalyticsPropertyStore::Remove | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Removes the specified key from the store.
true if the key was removed. | Analytics | bool Remove ( const [FString](API\Runtime\Core\Containers\FString) & Key ) | []
|
IAnalyticsPropertyStore::RemoveAll | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Removes all existing keys from the store. | Analytics | void RemoveAll() | []
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | 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. | Analytics | [EStatusCode](API\Runtime\Analytics\Interfaces\IAnalyticsPropertyStore\EStatusCode) Set ( const [FString](API\Runtime\Core\Containers\FString) & Key, int32 Value ) | []
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | 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.
One of the following code | Analytics | [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 ) | []
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
|
IAnalyticsPropertyStore::Set | /Engine/Source/Runtime/Analytics/Analytics/Public/Interfaces/IAnalyticsPropertyStore.h | Analytics | [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 ) | []
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.