Navigation
API > API/Plugins > API/Plugins/ConcertSyncCore > API/Plugins/ConcertSyncCore/FConcertSyncSessionDatabase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool EnumerateLiveTransactionEventIdsForPackage
(
const FName InPackageName, |
Enumerate the IDs of any live transaction events for the given package name. | ConcertSyncSessionDatabase.h | |
bool EnumerateLiveTransactionEventIdsForPackage
(
const int64 InPackageNameId, |
Enumerate the IDs of any live transaction events for the given package name ID. | ConcertSyncSessionDatabase.h |
EnumerateLiveTransactionEventIdsForPackage(const FName, TFunctionRef< bool(int64)>)
Description
Enumerate the IDs of any live transaction events for the given package name.
| Name | EnumerateLiveTransactionEventIdsForPackage |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertSyncSessionDatabase.h |
| Include Path | #include "ConcertSyncSessionDatabase.h" |
| Source | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Private/ConcertSyncSessionDatabase.cpp |
bool EnumerateLiveTransactionEventIdsForPackage
(
const FName InPackageName,
TFunctionRef < bool> InCallback
) const
True if the live transaction event IDs were enumerated without error, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InPackageName | The name of the package to get the live transaction event IDs for. |
| InCallback | Callback invoked for each transaction event ID; return true to continue enumeration, or false to stop. |
EnumerateLiveTransactionEventIdsForPackage(const int64, TFunctionRef< bool(int64)>)
Description
Enumerate the IDs of any live transaction events for the given package name ID.
| Name | EnumerateLiveTransactionEventIdsForPackage |
| Type | function |
| Header File | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Public/ConcertSyncSessionDatabase.h |
| Include Path | #include "ConcertSyncSessionDatabase.h" |
| Source | /Engine/Plugins/Developer/Concert/ConcertSync/ConcertSyncCore/Source/ConcertSyncCore/Private/ConcertSyncSessionDatabase.cpp |
bool EnumerateLiveTransactionEventIdsForPackage
(
const int64 InPackageNameId,
TFunctionRef < bool> InCallback
) const
True if the live transaction event IDs were enumerated without error, false otherwise.
Parameters
| Name | Remarks |
|---|---|
| InPackageNameId | The package name ID to get the live transaction event IDs for. |
| InCallback | Callback invoked for each transaction event ID; return true to continue enumeration, or false to stop. |