Navigation
API > API/Developer > API/Developer/DerivedDataCache
References
| Module | DerivedDataCache |
| Header | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataCache.h |
| Include | #include "DerivedDataCache.h" |
Syntax
struct FCacheGetChunkResponse
Remarks
Parameters for the completion callback for cache chunk requests.
Variables
| Type | Name | Description | |
|---|---|---|---|
| FValueId | Id | A copy of the ID from the request. | |
| FCacheKey | Key | A copy of the key from the request. | |
| FSharedString | Name | A copy of the name from the request. | |
| FSharedBuffer | RawData | Data for the subset of the value that was fetched when Status is Ok, otherwise null. | |
| FIoHash | RawHash | The hash of the entire value, even if only a subset was fetched. | |
| uint64 | RawOffset | A copy of the offset from the request. | |
| uint64 | RawSize | The size, in bytes, of the subset of the value that was fetched, if any. | |
| EStatus | Status | The status of the request. | |
| uint64 | UserData | A copy of the value from the request. |