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