Navigation
API > API/Plugins > API/Plugins/ConcertTransport
Message Flags when sent
| Name | EConcertMessageFlags |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertMain/Source/ConcertTransport/Public/ConcertTransportMessages.h |
| Include Path | #include "ConcertTransportMessages.h" |
Syntax
enum EConcertMessageFlags
{
None = 0,
ReliableOrdered = 1<<0,
UniqueId = 1<<1,
}
Values
| Name | Remarks |
|---|---|
| None | No special flags |
| ReliableOrdered | Guarantee that this message is received by the client(s) and processed in the order they were sent |
| UniqueId | Message sent with this flag should be uniquely identifiable across clients. |