Navigation
API > API/Runtime > API/Runtime/TypedElementFramework
Storage for a function that can be used as part of a query.
| Name | TQueryFunctionBase |
| Type | class |
| Header File | /Engine/Source/Runtime/TypedElementFramework/Public/Elements/Framework/TypedElementQueryFunctions.h |
| Include Path | #include "Elements/Framework/TypedElementQueryFunctions.h" |
Syntax
template<typename ReturnType, bool bIsConst>
class TQueryFunctionBase
Derived Classes
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ContractType | std::conditional_t< bIsConst, const IContextContract &, IContextContract & > | Elements/Framework/TypedElementQueryFunctions.h | |
| FunctionResponseType | IQueryFunctionResponse & | Elements/Framework/TypedElementQueryFunctions.h | |
| FunctionSpecializationCallback | std::conditional_t< bIsConst, bool(*)(FunctionResponseType Response, TArrayView< const void * > ConstColumns), bool(*)(FunctionResponseType Response, TArrayView< const void * > ConstColumns, TArrayView< void * > MutableColumns)> | Elements/Framework/TypedElementQueryFunctions.h | |
| WrapperFunctionType | TFunction< EFlowControl(TResult< ReturnType > &Result, ContractType Contract, FunctionResponseType Response, FunctionSpecializationCallback Specialization, EFlowControl IncompleteRowFlowControl)> | Elements/Framework/TypedElementQueryFunctions.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| bIsSingleRowProcessor | bool | Elements/Framework/TypedElementQueryFunctions.h | ||
| CapabilityMask | uint64 | Elements/Framework/TypedElementQueryFunctions.h | ||
| ConstColumnTypes | TConstArrayView< const UScriptStruct * > | Elements/Framework/TypedElementQueryFunctions.h | ||
| Function | WrapperFunctionType | Elements/Framework/TypedElementQueryFunctions.h | ||
| MutableColumnTypes | TConstArrayView< const UScriptStruct * > | Elements/Framework/TypedElementQueryFunctions.h |
Functions
Protected
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
EFlowControl CallInternal
(
TResult< ReturnType >& Result, |
TQueryFunctionBase | Elements/Framework/TypedElementQueryFunctions.h |