Navigation
API > API/Runtime > API/Runtime/MessagingCommon > API/Runtime/MessagingCommon/FMessageEndpoint
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Forward
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context, |
Immediately forwards a previously received message to the specified recipient. | MessageEndpoint.h | |
void Forward
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context, |
Immediately forwards a previously received message to the specified list of recipients. | MessageEndpoint.h | |
void Forward
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context, |
Forwards a previously received message. | MessageEndpoint.h | |
void Forward
(
const TSharedRef< IMessageContext, ESPMode::ThreadSafe >& Context, |
Forwards a previously received message to the specified recipient after a given delay. | MessageEndpoint.h |
Forward(const TSharedRef< IMessageContext, ESPMode::ThreadSafe > &, const FMessageAddress &)
Description
Immediately forwards a previously received message to the specified recipient.
Messages can only be forwarded to endpoints within the same process.
| Name | Forward |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Forward
(
const TSharedRef < IMessageContext, ESPMode::ThreadSafe > & Context,
const FMessageAddress & Recipient
)
Parameters
| Name | Remarks |
|---|---|
| Context | The context of the message to forward. |
| Recipient | The address of the recipient to forward the message to. |
Forward(const TSharedRef< IMessageContext, ESPMode::ThreadSafe > &, const TArray< FMessageAddress > &)
Description
Immediately forwards a previously received message to the specified list of recipients.
Messages can only be forwarded to endpoints within the same process.
| Name | Forward |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Forward
(
const TSharedRef < IMessageContext, ESPMode::ThreadSafe > & Context,
const TArray < FMessageAddress > & Recipients
)
Parameters
| Name | Remarks |
|---|---|
| Context | The context of the message to forward. |
| Recipients | The list of message recipients to forward the message to. |
| ForwardingScope | The scope of the forwarded message. |
Forward(const TSharedRef< IMessageContext, ESPMode::ThreadSafe > &, const TArray< FMessageAddress > &, const FTimespan &)
Description
Forwards a previously received message.
Messages can only be forwarded to endpoints within the same process.
| Name | Forward |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Forward
(
const TSharedRef < IMessageContext, ESPMode::ThreadSafe > & Context,
const TArray < FMessageAddress > & Recipients,
const FTimespan & Delay
)
Parameters
| Name | Remarks |
|---|---|
| Context | The context of the message to forward. |
| Recipients | The list of message recipients to forward the message to. |
| Delay | The time delay. |
Forward(const TSharedRef< IMessageContext, ESPMode::ThreadSafe > &, const FMessageAddress &, const FTimespan &)
Description
Forwards a previously received message to the specified recipient after a given delay.
Messages can only be forwarded to endpoints within the same process.
| Name | Forward |
| Type | function |
| Header File | /Engine/Source/Runtime/MessagingCommon/Public/MessageEndpoint.h |
| Include Path | #include "MessageEndpoint.h" |
void Forward
(
const TSharedRef < IMessageContext, ESPMode::ThreadSafe > & Context,
const FMessageAddress & Recipient,
const FTimespan & Delay
)
Parameters
| Name | Remarks |
|---|---|
| Context | The context of the message to forward. |
| Recipient | The address of the recipient to forward the message to. |
| ForwardingScope | The scope of the forwarded message. |
| Delay | The delay after which to publish the message. |