Navigation
API > API/Plugins > API/Plugins/Concert
References
| Module | Concert |
| Header | /Engine/Plugins/Developer/Concert/ConcertMain/Source/Concert/Public/ConcertMessageData.h |
| Include | #include "ConcertMessageData.h" |
Syntax
USTRUCT&40;&41;
struct FConcertSessionFilter
Remarks
Holds filter rules used when migrating session data
Variables
| Type | Name | Description | |
|---|---|---|---|
| int64 | ActivityIdLowerBound | The lower-bound (inclusive) of activity IDs to include (unless explicitly excluded via ActivityIdsToExclude) | |
| TArray< int64 > | ActivityIdsToExclude | Activity IDs to explicitly exclude, even if inside of the bounded-range specified above | |
| TArray< int64 > | ActivityIdsToInclude | Activity IDs to explicitly include, even if outside of the bounded-range specified above (takes precedence over ActivityIdsToExclude) | |
| int64 | ActivityIdUpperBound | The upper-bound (inclusive) of activity IDs to include (unless explicitly excluded via ActivityIdsToExclude) | |
| bool | bIncludeIgnoredActivities | True to include ignored activities | |
| bool | bMetaDataOnly | True to export the activity summaries without the package/transaction data to look at the log rather than replaying the activities. | |
| bool | bOnlyLiveData | True if only live data should be included (live transactions and head package revisions) |
Functions
| Type | Name | Description | |
|---|---|---|---|
| bool | ActivityIdPassesFilter
(
const int64 InActivityId |
Return true if the given activity ID passes the ID tests of this filter. |