Navigation
API > API/Runtime > API/Runtime/DataflowCore > API/Runtime/DataflowCore/Dataflow > API/Runtime/DataflowCore/Dataflow/FDataflowNode
References
| Module | DataflowCore |
| Header | /Engine/Source/Runtime/Experimental/Dataflow/Core/Public/Dataflow/DataflowNode.h |
| Include | #include "Dataflow/DataflowNode.h" |
template<class T>
void SetValue
&40;
Dataflow::FContext & Context,
T && Value,
const typename TDecay< T >::Type &42; Reference
&41; const
Remarks
SetValue(...)
Set the value of the Reference output.
Note: If the compiler errors out with "You cannot bind an lvalue to an rvalue reference", then simply remove the explicit template parameter from the function call to allow for a const reference type to be deducted. const int32 Value = 0; SetValue
Parameters
| Name | Description |
|---|---|
| Context | : The evaluation context that holds the data store. |
| Value | : The value to store in the contexts data store. |
| Reference | : Pointer to a member of this node that corresponds with the output to set. |