36 lines
841 B
C#
36 lines
841 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace EpicGames.Horde.Logs
|
|
{
|
|
/// <summary>
|
|
/// Stats for a search
|
|
/// </summary>
|
|
public class SearchStats
|
|
{
|
|
/// <summary>
|
|
/// Number of blocks that were scanned
|
|
/// </summary>
|
|
public int NumScannedBlocks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of bytes that had to be scanned for results
|
|
/// </summary>
|
|
public int NumScannedBytes { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of blocks that were skipped
|
|
/// </summary>
|
|
public int NumSkippedBlocks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of blocks that had to be decompressed
|
|
/// </summary>
|
|
public int NumDecompressedBlocks { get; set; }
|
|
|
|
/// <summary>
|
|
/// Number of blocks that were searched but did not contain the search term
|
|
/// </summary>
|
|
public int NumFalsePositiveBlocks { get; set; }
|
|
}
|
|
}
|