Navigation
API > API/Runtime > API/Runtime/Messaging > API/Runtime/Messaging/IMessageBus
Description
Sends a message to subscribed recipients.
The bus takes over ownership of the message's memory. It must NOT be freed by the caller.
| Name | Publish |
| Type | function |
| Header File | /Engine/Source/Runtime/Messaging/Public/IMessageBus.h |
| Include Path | #include "IMessageBus.h" |
void Publish
(
void * Message,
UScriptStruct * TypeInfo,
EMessageScope Scope,
const TMap < FName , FString > & Annotations,
const FTimespan & Delay,
const FDateTime & Expiration,
const TSharedRef < IMessageSender , ESPMode::ThreadSafe > & Publisher
)
Parameters
| Name | Remarks |
|---|---|
| Message | The message to publish. |
| TypeInfo | The message's type information. |
| Scope | The message scope. |
| Annotations | An optional message annotations header. |
| Delay | The delay after which to send the message. |
| Expiration | The time at which the message expires. |
| Publisher | The message publisher. |
See Also
-
Send