Navigation
API > API/Plugins > API/Plugins/DataRegistry
Information about the cache status of an item
| Name | EDataRegistryCacheGetStatus |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/DataRegistry/Source/DataRegistry/Public/DataRegistryTypes.h |
| Include Path | #include "DataRegistryTypes.h" |
Syntax
enum EDataRegistryCacheGetStatus
{
NotFound,
FoundVolatile,
FoundPersistent,
}
Values
| Name | Remarks |
|---|---|
| NotFound | Item was not found in the cache |
| FoundVolatile | Item was found, but is likely to change if requested again. |
| FoundPersistent | Item was found, and this will be safe to cache as long as the GetCacheVersion on the DataRegistry has not changed |