Navigation
API > API/Plugins > API/Plugins/DataRegistry
General rule about how hard it is to access an item, with later entries being the most available and faster to access
| Name | EDataRegistryAvailability |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/DataRegistry/Source/DataRegistry/Public/DataRegistryTypes.h |
| Include Path | #include "DataRegistryTypes.h" |
Syntax
enum EDataRegistryAvailability
{
DoesNotExist,
Unknown,
Remote,
OnDisk,
LocalAsset,
PreCached,
}
Values
| Name | Remarks |
|---|---|
| DoesNotExist | Item definitely does not exist |
| Unknown | Not sure where item is located or if it exists at all |
| Remote | From a database or website with very high latency |
| OnDisk | From some other asset such as a json file available without internet access |
| LocalAsset | Comes from a local asset, can be sync loaded as needed |
| PreCached | This item has already been loaded into memory by a different system and is immediately available |