Navigation
API > API/Developer > API/Developer/DerivedDataCache > API/Developer/DerivedDataCache/ICache
Description
Asynchronous request to get chunks, which are subsets of values, from records or values.
| Name | GetChunks |
| Type | function |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataCache.h |
| Include Path | #include "DerivedDataCache.h" |
void GetChunks
(
TConstArrayView< FCacheGetChunkRequest > Requests,
IRequestOwner & Owner,
FOnCacheGetChunkComplete && OnComplete
)
Parameters
| Name | Remarks |
|---|---|
| Requests | Requests with the key, ID, offset, and size of each chunk 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. |