FDerivedDataCacheInterface::GetAsynchronousResults

Retrieves the results from an async lookup / build.

Unreal Engine C++ API Reference > Developer > DerivedDataCache > FDerivedDataCacheInterface > GetAsynchronousResults

References

   
Module DerivedDataCache
Header /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataCacheInterface.h
Include #include "DerivedDataCacheInterface.h"
bool GetAsynchronousResults
(
    uint32 Handle,
    [TArray](API\Runtime\Core\Containers\TArray)< uint8 > & OutData,
    bool * bDataWasBuilt
)

Remarks

Retrieves the results from an async lookup / build. MUST only be called after the results are known to be ready by one of the aforementioned calls. true if the data was retrieved from the cache or the deriver built the data successfully. false can only occur if the plugin returns false.

Parameters

Name Description
Handle Handle returned from GetAsynchronous.
OutData Array to receive the output results.
bDataWasBuilt if non-null, set to true if the data returned had to be built instead of retrieved from the DDC. Used for stat tracking.

Ask questions and help your peers Developer Forums

Write your own tutorials or read those from others Learning Library