Navigation
Unreal Engine C++ API Reference > Runtime > MessagingCommon
Inheritance Hierarchy
- IMessageHandler
- TRawMessageHandler
References
Module | MessagingCommon |
Header | /Engine/Source/Runtime/MessagingCommon/Public/MessageHandlers.h |
Include | #include "MessageHandlers.h" |
Syntax
template<typename MessageType, typename HandlerType>
class TRawMessageHandler : public IMessageHandler
Remarks
Template for handlers of one specific message type (via raw function pointers).
Constructors
Type | Name | Description | |
---|---|---|---|
![]() |
TRawMessageHandler
(
HandlerType* InHandler, |
Creates and initializes a new message handler. |
Destructors
Type | Name | Description | |
---|---|---|---|
![]() |
Virtual destructor. |
Overridden from IMessageHandler
Type | Name | Description | |
---|---|---|---|
![]() ![]() |
void | HandleMessage
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context |
Handles the specified message. |
Typedefs
Name | Description |
---|---|
FuncType | Type definition for function pointers that are compatible with this TRawMessageHandler. |