| FBuildAction
|
Module |
|
Header |
/Engine/Source/Developer/DerivedDataCache/Public/DerivedDataBuildAction.h |
Include |
#include "DerivedDataBuildAction.h" |
class FBuildAction
A build action is an immutable reference to a build function and its inputs.
The purpose of an action is to capture everything required to execute a derived data build for a fixed version of the build function and its constants and inputs.
The key for the action uniquely identifies the action and is derived by hashing the serialized compact binary representation of the action.
The keys for constants and inputs are names that are unique within the build action.
No constructors are accessible with public or protected access.
Name | Description | ||
---|---|---|---|
|
const FGuid ... |
GetBuildSystemVersion() |
Returns the version of the build system required to build this action. |
|
GetFunction() |
Returns the name of the build function with which to build this action. |
|
|
const FGuid ... |
GetFunctionVersion() |
Returns the version of the build function with which to build this action. |
|
const FBuild... |
GetKey() |
Returns the key that uniquely identifies this build action. |
|
GetName() |
Returns the name by which to identify this action for logging and profiling. |
|
|
HasConstants() |
Returns whether the action has any constants. |
|
|
HasInputs() |
Returns whether the action has any inputs. |
|
|
IterateConstants ( |
Visits every constant in order by key. |
|
|
IterateInputs ( |
Visits every input in order by key. |
|
|
FOptionalBui... |
Load ( |
Load a build action from compact binary. |
|
Save ( |
Saves the build action to a compact binary object. Calls BeginObject and EndObject. |