|
| | TBaseDynamicMulticastDelegate () |
| |
| | TBaseDynamicMulticastDelegate (const TMulticastScriptDelegate< ThreadSafetyMode > &InMulticastScriptDelegate) |
| |
| template<class UserClass > |
| bool | __Internal_IsAlreadyBound (UserClass *InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) const |
| |
| template<class UserClass > |
| bool | __Internal_IsAlreadyBound (TObjectPtr< UserClass > InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) const |
| |
| template<class UserClass > |
| void | __Internal_AddDynamic (UserClass *InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| template<class UserClass > |
| void | __Internal_AddDynamic (TObjectPtr< UserClass > InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| template<class UserClass > |
| void | __Internal_AddUniqueDynamic (UserClass *InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| template<class UserClass > |
| void | __Internal_AddUniqueDynamic (TObjectPtr< UserClass > InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| template<class UserClass > |
| void | __Internal_RemoveDynamic (UserClass *InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| template<class UserClass > |
| void | __Internal_RemoveDynamic (TObjectPtr< UserClass > InUserObject, typename FDelegate::template TMethodPtrResolver< UserClass >::FMethodPtr InMethodPtr, FName InFunctionName) |
| |
| | TMulticastScriptDelegate ()=default |
| |
| | TMulticastScriptDelegate (const TMulticastScriptDelegate &Other) |
| |
| | TMulticastScriptDelegate (TMulticastScriptDelegate &&Other) |
| |
| TMulticastScriptDelegate & | operator= (const TMulticastScriptDelegate &Other) |
| |
| TMulticastScriptDelegate & | operator= (TMulticastScriptDelegate &&Other) |
| |
| bool | IsBound () const |
| |
| bool | Contains (const TScriptDelegate< ThreadSafetyMode > &InDelegate) const |
| |
| bool | Contains (const TScriptDelegate< OtherThreadSafetyMode > &InDelegate) const |
| |
| bool | Contains (const UObject *InObject, FName InFunctionName) const |
| |
| void | Add (const TScriptDelegate< ThreadSafetyMode > &InDelegate) |
| |
| void | Add (const TScriptDelegate< OtherThreadSafetyMode > &InDelegate) |
| |
| void | AddUnique (const TScriptDelegate< ThreadSafetyMode > &InDelegate) |
| |
| void | AddUnique (const TScriptDelegate< OtherThreadSafetyMode > &InDelegate) |
| |
| void | Remove (const TScriptDelegate< ThreadSafetyMode > &InDelegate) |
| |
| void | Remove (const TScriptDelegate< OtherThreadSafetyMode > &InDelegate) |
| |
| void | Remove (const UObject *InObject, FName InFunctionName) |
| |
| void | RemoveAll (const UObject *Object) |
| |
| void | Clear () |
| |
| FString | ToString () const |
| |
| void | ProcessMulticastDelegate (void *Parameters) const |
| |
| TArray< UObject * > | GetAllObjects () const |
| |
| TArray< UObject * > | GetAllObjectsEvenIfUnreachable () const |
| |
| TArray< typename UnicastDelegateType::WeakPtrType * > | GetAllObjectRefsEvenIfUnreachable () const |
| |
| SIZE_T | GetAllocatedSize () const |
| |
template<
typename ThreadSafetyMode,
typename RetValType, typename... ParamTypes>
class TBaseDynamicMulticastDelegate< ThreadSafetyMode, RetValType, ParamTypes >
Dynamic multi-cast delegate template class (UObject-based, serializable). You'll use the various DECLARE_DYNAMIC_MULTICAST_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.