Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/UObject
Inheritance Hierarchy
- FSparseDelegate
- TSparseDynamicDelegate
- FActorBeginCursorOverSignature
- FActorBeginOverlapSignature
- FActorBeginTouchOverSignature
- FActorComponentActivatedSignature
- FActorComponentDeactivateSignature
- FActorDestroyedSignature
- FActorEndCursorOverSignature
- FActorEndOverlapSignature
- FActorEndPlaySignature
- FActorEndTouchOverSignature
- FActorHitSignature
- FActorOnClickedSignature
- FActorOnInputTouchBeginSignature
- FActorOnInputTouchEndSignature
- FActorOnReleasedSignature
- FComponentBeginCursorOverSignature
- FComponentBeginOverlapSignature
- FComponentBeginTouchOverSignature
- FComponentCollisionSettingsChangedSignature
- FComponentEndCursorOverSignature
- FComponentEndOverlapSignature
- FComponentEndTouchOverSignature
- FComponentHitSignature
- FComponentOnClickedSignature
- FComponentOnInputTouchBeginSignature
- FComponentOnInputTouchEndSignature
- FComponentOnReleasedSignature
- FComponentPhysicsStateChanged
- FComponentSleepSignature
- FComponentWakeSignature
- FIsRootComponentChanged
- FPawnControllerChangedSignature
- FPawnRestartedSignature
- FPhysicsVolumeChanged
- FPixelStreamingOnIceCandidate
- FPixelStreamingOnIceConnection
- FPixelStreamingOnIceDisconnection
- FPixelStreamingSignallingComponentAnswer
- FPixelStreamingSignallingComponentConfig
- FPixelStreamingSignallingComponentConnected
- FPixelStreamingSignallingComponentConnectionError
- FPixelStreamingSignallingComponentDataChannels
- FPixelStreamingSignallingComponentDisconnected
- FPixelStreamingSignallingComponentIceCandidate
- FPixelStreamingSignallingComponentOffer
- FTakeAnyDamageSignature
- FTakePointDamageSignature
- FTakeRadialDamageSignature
- UConstraintsManager::FOnConstraintAdded
- UConstraintsManager::FOnConstraintRemoved
- UControlRig::FOnControlSelectedBP
References
| Module | CoreUObject |
| Header | /Engine/Source/Runtime/CoreUObject/Public/UObject/SparseDelegate.h |
| Include | #include "UObject/SparseDelegate.h" |
Syntax
template<typename MulticastDelegate, typename OwningClass, typename DelegateInfoClass>
struct TSparseDynamicDelegate : public FSparseDelegate
Remarks
Sparse version of TBaseDynamicDelegate
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | __Internal_AddDynamic
(
UserClass* InUserObject, |
Binds a UObject instance and a UObject method address to this multi-cast delegate. | |
| void | __Internal_AddUniqueDynamic
(
UserClass* InUserObject, |
Binds a UObject instance and a UObject method address to this multi-cast delegate, but only if it hasn't been bound before. | |
| bool | __Internal_IsAlreadyBound
(
UserClass* InUserObject, |
Tests if a UObject instance and a UObject method address pair are already bound to this multi-cast delegate. | |
| void | __Internal_RemoveDynamic
(
UserClass* InUserObject, |
Unbinds a UObject instance and a UObject method address from this multi-cast delegate. | |
| void | Add
(
FScriptDelegate InDelegate |
Adds a function delegate to this multi-cast delegate's invocation list | |
| void | AddUnique
(
FScriptDelegate InDelegate |
Adds a function delegate to this multi-cast delegate's invocation list if a delegate with the same signature doesn't already exist in the invocation list | |
| void | Broadcast
(
ParamTypes... Params |
Broadcasts this delegate to all bound objects, except to those that may have expired. | |
| void | Clear () |
Removes all functions from this delegate's invocation list | |
| bool | Contains
(
const FScriptDelegate& InDelegate |
Checks whether a function delegate is already a member of this multi-cast delegate's invocation list | |
| bool | Checks whether a function delegate is already a member of this multi-cast delegate's invocation list | ||
| FName | |||
| TSharedPtr< MulticastDelegate > | GetShared () |
Returns the multicast delegate if any delegates are bound to the sparse delegate | |
| void | Remove
(
const FScriptDelegate& InDelegate |
Removes a function from this multi-cast delegate's invocation list (performance is O(N)). | |
| void | Removes a function from this multi-cast delegate's invocation list (performance is O(N)). | ||
| void | Removes all delegate bindings from this multicast delegate's invocation list that are bound to the specified object. |
Typedefs
| Name | Description |
|---|---|
| FDelegate |