Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMulticastScriptDelegate
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). |
UObject/ScriptDelegates.h |
|
|
|
UObject/ScriptDelegates.h |
|
void Remove
(
const UObject* InObject,
FName InFunctionName
)
|
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). |
UObject/ScriptDelegates.h |
|
Remove(const TScriptDelegate< ThreadSafetyMode > &)
Description
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). Note that the order of the delegates may not be preserved!
| |
|
| Name |
Remove |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path |
#include "UObject/ScriptDelegates.h" |
void Remove
(
const TScriptDelegate < ThreadSafetyMode > & InDelegate
)
Parameters
| Name |
Remarks |
| InDelegate |
Delegate to remove |
Remove(const TScriptDelegate< OtherThreadSafetyMode > &)
| |
|
| Name |
Remove |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path |
#include "UObject/ScriptDelegates.h" |
template<typename OtherThreadSafetyMode, std::enable_if_t<(UE::Core::Private::BackwardCompatibilityCheck< InThreadSafetyMode, OtherThreadSafetyMode >()), int >>
void Remove
(
const TScriptDelegate < OtherThreadSafetyMode > & InDelegate
)
Remove(const UObject *, FName)
Description
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). Note that the order of the delegates may not be preserved!
| |
|
| Name |
Remove |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/UObject/ScriptDelegates.h |
| Include Path |
#include "UObject/ScriptDelegates.h" |
void Remove
(
const UObject * InObject,
FName InFunctionName
)
Parameters
| Name |
Remarks |
| InObject |
Object of the delegate to remove |
| InFunctionName |
Function name of the delegate to remove |