Navigation
API > API/Plugins > API/Plugins/ConcertTransport
Inheritance Hierarchy
- IConcertMessage
- IConcertEvent
- IConcertRequest
- IConcertResponse
References
| Module | ConcertTransport |
| Header | /Engine/Plugins/Developer/Concert/ConcertMain/Source/ConcertTransport/Public/IConcertMessages.h |
| Include | #include "IConcertMessages.h" |
Syntax
class IConcertMessage
Remarks
Abstract for Concert Message
Destructors
| Type | Name | Description | |
|---|---|---|---|
Functions
| Type | Name | Description | |
|---|---|---|---|
| void | Acknowledge
(
const FConcertMessageContext& ConcertContext |
Acknowledge the message | |
| void * | Construct this message data, allocates memory | ||
| const TMap< FName, FString > & | Annotations for sending across message bus | ||
| uint16 | GetChannelId () |
Get the ID of the channel this message was sent from | |
| FDateTime | Get the Creation time of the message | ||
| FGuid | GetMessageId () |
Get the ID of the message | |
| uint16 | Get the order index of the message (for ordering reliable messages, used when ChannelId != UnreliableChannelId) | ||
| const void * | Get the template of the message that will be created with ConstructMessage | ||
| UScriptStruct * | Get the message type of the data allocated with ConstructMessage | ||
| const FGuid & | GetSenderId () |
Get the Concert Endpoint Id of the sender | |
| EConcertMessageState | GetState () |
Get the message state | |
| EConcertMessageType | GetType () |
Get the message type | |
| bool | IsReliable () |
Get is the message is flagged a reliable | |
| void | SetAnnotations
(
TMap< FName, FString > Annotations |
Annotations associated with this message. | |
| void | SetChannelId
(
uint16 Channel |
Set the ID of the channel this message was sent from. Call before ConstructMessage. | |
| void | SetMessageId
(
const FGuid& MessageId |
Set the ID of the message. Call before ConstructMessage. | |
| void | SetOrderIndex
(
uint16 OrderIndex |
Set the order index of the message (for ordering reliable messages, used when ChannelId != UnreliableChannelId). | |
| void | SetSenderId
(
const FGuid& SenderId |
Set the Concert Endpoint Id of the sender. Call before ConstructMessage. | |
| void | TimeOut () |
Timeout the message |