Navigation
API > API/Plugins > API/Plugins/ConcertSyncClient > API/Plugins/ConcertSyncClient/IConcertClientWorkspace
Description
Lookup the specified transaction event.
This function is more efficient to use if only the meta data is required.
| Name | FindTransactionEvent |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientWorkspace.h |
| Include Path | #include "IConcertClientWorkspace.h" |
bool FindTransactionEvent
(
const int64 TransactionEventId,
FConcertSyncTransactionEvent & OutTransactionEvent,
const bool bMetaDataOnly
) const
Whether the transaction event was found and requested data available. If bMetaDataOnly is false and the event was partially synced (because it was superseded by another one), the function returns false.
Parameters
| Name | Remarks |
|---|---|
| TransactionEventId | ID of the transaction to look for. |
| OutTransactionEvent | The transaction corresponding to TransactionEventId if found. |
| bMetaDataOnly | True to extract the event meta-data only (title, ids, etc), false to get the full transaction data (to reapply/inspect it). |
See Also
- FindOrRequestTransactionEvent() if the full transaction data is required.