Navigation
API > API/Runtime > API/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. |
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | HandleMessage
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context |
Typedefs
| Name | Description |
|---|---|
| FuncType | Type definition for function pointers that are compatible with this TRawMessageHandler. |