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