IConcertClientWorkspace::IsAssetModifiedByOtherClients

Returns true if the specified asset has unsaved modifications from any other client than the one corresponding to this workspace client and possibly returns more information about those other clients.

Windows
MacOS
Linux

References

Module

ConcertSyncClient

Header

/Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientWorkspace.h

Include

#include "IConcertClientWorkspace.h"

Syntax

bool IsAssetModifiedByOtherClients
(
    const FName & AssetName,
    int32 * OutOtherClientsWithModifNum,
    TArray< FConcertClientInfo > * OutOtherClientsWithModifInfo,
    int32 OtherClientsWithModifMaxFetchNum
) const

Remarks

Returns true if the specified asset has unsaved modifications from any other client than the one corresponding to this workspace client and possibly returns more information about those other clients.

Parameters

Parameter

Description

AssetName

The asset name.

OutOtherClientsWithModifNum

If not null, will contain how many other client(s) have modified the specified package.

OutOtherClientsWithModifInfo

If not null, will contain the other client(s) who modified the packages, up to OtherClientsWithModifMaxFetchNum.

OtherClientsWithModifMaxFetchNum

The maximum number of client info to store in OutOtherClientsWithModifInfo if the latter is not null.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss