Run media scan in a background thread in GUI.

This commit is contained in:
2019-04-21 01:28:47 +01:00
parent a71b2e6cb3
commit d31bd8117f
2 changed files with 34 additions and 16 deletions

View File

@@ -102,4 +102,11 @@ namespace DiscImageChef.Core
/// Shows an error message
/// </summary>
public delegate void ErrorMessageHandler(string text);
/// <summary>
/// Updates lists of time taken on scanning the specified number of blocks
/// </summary>
/// <param name="time">Time in milliseconds</param>
/// <param name="blocks">Number of blocks scanned</param>
public delegate void ScanTime(double time, uint blocks);
}