Navigation
API > API/Developer > API/Developer/DerivedDataCache
A build function registry maintains a collection of build functions.
| Name | IBuildFunctionRegistry |
| Type | class |
| Header File | /Engine/Source/Developer/DerivedDataCache/Public/DerivedDataBuildFunctionRegistry.h |
| Include Path | #include "DerivedDataBuildFunctionRegistry.h" |
Syntax
class IBuildFunctionRegistry
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual ~IBuildFunctionRegistry() |
DerivedDataBuildFunctionRegistry.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const IBuildFunction * FindFunction
(
FUtf8StringView Function |
Find a function by name. | DerivedDataBuildFunctionRegistry.h | |
FGuid FindFunctionVersion
(
FUtf8StringView Function |
Find a function version by name. Returns zero if not found. Safe to call from any thread. | DerivedDataBuildFunctionRegistry.h | |
void IterateFunctionVersions
(
TFunctionRef< void(FUtf8StringView Name, const FGuid&Version)> Visitor |
Iterate the complete list of build function versions. Safe to call from any thread. | DerivedDataBuildFunctionRegistry.h |