Navigation
Unreal Engine C++ API Reference > Plugins > ConcertSyncClient > IConcertClientWorkspace
References
Module | ConcertSyncClient |
Header | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientWorkspace.h |
Include | #include "IConcertClientWorkspace.h" |
TFuture< TOptional< FConcertSyncTransactionEvent > > FindOrRequestTransactionEvent
&40;
const int64 TransactionEventId,
const bool bMetaDataOnly
&41;
Remarks
Lookup the specified transaction events. By default, some transaction activities are partially synced (only the summary) when the system detects that the transaction was superseded by another one.
If only the meta data is required, consider using FindTransactionEvent() as it is more efficient. A future containing the event, if found. If bMetaDataOnly is false and the event was partially synced (because it was superseded by another one) the function will perform an asynchronous server request to get the transaction data.
Parameters
Name | Description |
---|---|
TransactionEventId | ID of the transaction to look for. |
bMetaDataOnly | True to extract the event meta-data only (title, IDs, etc), false to get the full transaction data (to reapply/inspect it). |