Navigation
API > API/Plugins > API/Plugins/ConcertSyncClient > API/Plugins/ConcertSyncClient/IConcertClientWorkspace
Description
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.
| Name | FindOrRequestTransactionEvent |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncClient/Source/ConcertSyncClient/Public/IConcertClientWorkspace.h |
| Include Path | #include "IConcertClientWorkspace.h" |
TFuture < TOptional < FConcertSyncTransactionEvent > > FindOrRequestTransactionEvent
(
const int64 TransactionEventId,
const bool bMetaDataOnly
)
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 | Remarks |
|---|---|
| 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). |