Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore
| |
|
| Name |
EConcertReplicationRestoreContentFlags |
| Type |
enum |
| Header File |
/Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/Replication/Messages/RestoreContent.h |
| Include Path |
#include "Replication/Messages/RestoreContent.h" |
Syntax
enum EConcertReplicationRestoreContentFlags
{
None = 0,
RestoreOnTop = 1 << 0,
ValidateUniqueClient = 1 << 1,
RestoreAuthority = 1 << 2,
SendNewState = 1 << 3,
RestoreMute = 1 << 4,
StreamsAndAuthority = RestoreAuthority,
All = StreamsAndAuthority | RestoreMute,
}
Values
| Name |
Remarks |
| None |
|
| RestoreOnTop |
If set, the client's final streams & authority shall be the union of the current registered streams & authority and that of the activity. |
| ValidateUniqueClient |
If set, checks that there is no other client with the same display and device name. |
| RestoreAuthority |
Also restore the authority the client had. |
| SendNewState |
The response should include the new stream and authority state. |
| RestoreMute |
Also restore the mute states of the objects. |
| StreamsAndAuthority |
|
| All |
|