Navigation
API > API/Developer > API/Developer/DerivedDataCache > API/Developer/DerivedDataCache/ICache
Description
Asynchronous request to get values from the cache.
| Name | GetValue |
| Type | function |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataCache.h |
| Include Path | #include "DerivedDataCache.h" |
void GetValue
(
TConstArrayView< FCacheGetValueRequest > Requests,
IRequestOwner & Owner,
FOnCacheGetValueComplete && OnComplete
)
Parameters
| Name | Remarks |
|---|---|
| Requests | Requests with the keys of the cache values to fetch. |
| Owner | The owner to execute the request within. See IRequestOwner. |
| OnComplete | A callback invoked for every request as it completes or is canceled. |