Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore > API/Plugins/ConcertSyncCore/IObjectReplicationFormat
Description
Combines Base and Newer to form a single payload. Calling ApplyReplicationEvent(CombineReplicationEvents(Base, Other)) should be equivalent to calling ApplyReplicationEvent(Base) followed by ApplyReplicationEvent(Newer).
Derived Overrides
| Name | CombineReplicationEvents |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/Replication/Formats/IObjectReplicationFormat.h |
| Include Path | #include "Replication/Formats/IObjectReplicationFormat.h" |
void CombineReplicationEvents
(
FConcertSessionSerializedPayload & Base,
const FConcertSessionSerializedPayload & Newer
)
Parameters
| Name | Remarks |
|---|---|
| Base | Payload produced by CreateReplicationEvent. Produced before Newer. This will be overwritten to contain the combined result. |
| Newer | Payload produced by CreateReplicationEvent. Produced after Base and on the same UObject. |