Navigation
API > API/Runtime > API/Runtime/Core
Dynamic delegate template class (UObject-based, serializable). You'll use the various DECLARE_DYNAMIC_DELEGATE macros to create the actual delegate type, templated to the function signature the delegate is compatible with. Then, you can create an instance of that class when you want to assign functions to the delegate.
| Name | TDynamicDelegate |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Concepts/DynamicDelegate.h |
| Include Path | #include "Concepts/DynamicDelegate.h" |
Syntax
template<typename FuncType, typename ThreadSafetyMode>
class TDynamicDelegate