Navigation
API > API/Plugins > API/Plugins/ConcertSyncClient > API/Plugins/ConcertSyncClient/IConcertClientWorkspace
Description
This delegate allows user to defer the finalization of a sync workspace. This is for situtations where multiple client nodes need to be finalized at the same point in time. The delegate function should return true when workspace synchronization is allowed and it will be called on OnEndFrame() of the tick loop.
| Name | AddWorkspaceFinalizeDelegate |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientWorkspace.h |
| Include Path | #include "IConcertClientWorkspace.h" |
void AddWorkspaceFinalizeDelegate
(
FName InDelegateName,
FCanFinalizeWorkspaceDelegate InDelegate
)
Parameters
| Name | Remarks |
|---|---|
| InDelegateName | the identifier for the provided delegate. |
| InDelegate | the delegate to use to query if finalize workspace |