Navigation
API > API/Runtime > API/Runtime/MessagingCommon > API/Runtime/MessagingCommon/FMessageEndpoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Unsubscribe () |
Unsubscribes this endpoint from all message types. | MessageEndpoint.h | |
void Unsubscribe () |
Template method to unsubscribe the endpoint from the specified message type. | MessageEndpoint.h | |
void Unsubscribe
(
const FName& MessageType |
Unsubscribes this endpoint from the specified message type. | MessageEndpoint.h | |
void Unsubscribe
(
const FTopLevelAssetPath& MessageType |
Unsubscribes this endpoint from the specified message type. | MessageEndpoint.h |
Unsubscribe()
Description
Unsubscribes this endpoint from all message types.
| Name | Unsubscribe |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Unsubscribe()
See Also
- Subscribe
Unsubscribe()
Description
Template method to unsubscribe the endpoint from the specified message type.
| Name | Unsubscribe |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
template<class MessageType>
void Unsubscribe()
Parameters
| Name | Remarks |
|---|---|
| MessageType | The type of message to unsubscribe (IMessageBus::PATHNAME_All = all types). |
See Also
- Subscribe
Unsubscribe(const FName &)
Description
Unsubscribes this endpoint from the specified message type.
| Name | Unsubscribe |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Unsubscribe
(
const FName & MessageType
)
Parameters
| Name | Remarks |
|---|---|
| MessageType | The type of message to unsubscribe (IMessageBus::PATHNAME_All = all types). |
See Also
- Subscribe
Unsubscribe(const FTopLevelAssetPath &)
Description
Unsubscribes this endpoint from the specified message type.
| Name | Unsubscribe |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Unsubscribe
(
const FTopLevelAssetPath & MessageType
)
Parameters
| Name | Remarks |
|---|---|
| MessageType | The type of message to unsubscribe (IMessageBus::PATHNAME_All = all types). |
See Also
- Subscribe