1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-01 00:53:29 +08:00

Fill in thread pool names

This commit is contained in:
Dean Herbert 2019-06-12 00:35:13 +09:00
parent 606be3d7ce
commit 27054a744e
2 changed files with 2 additions and 2 deletions

View File

@ -426,7 +426,7 @@ namespace osu.Game.Beatmaps
private const int update_queue_request_concurrency = 4; private const int update_queue_request_concurrency = 4;
private readonly ThreadedTaskScheduler updateScheduler = new ThreadedTaskScheduler(update_queue_request_concurrency); private readonly ThreadedTaskScheduler updateScheduler = new ThreadedTaskScheduler(update_queue_request_concurrency, nameof(BeatmapUpdateQueue));
public BeatmapUpdateQueue(IAPIProvider api) public BeatmapUpdateQueue(IAPIProvider api)
{ {

View File

@ -644,6 +644,6 @@ namespace osu.Game.Database
/// This scheduler generally performs IO and CPU intensive work so concurrency is limited harshly. /// This scheduler generally performs IO and CPU intensive work so concurrency is limited harshly.
/// It is mainly being used as a queue mechanism for large imports. /// It is mainly being used as a queue mechanism for large imports.
/// </remarks> /// </remarks>
protected static readonly ThreadedTaskScheduler IMPORT_SCHEDULER = new ThreadedTaskScheduler(import_queue_request_concurrency); protected static readonly ThreadedTaskScheduler IMPORT_SCHEDULER = new ThreadedTaskScheduler(import_queue_request_concurrency, nameof(ArchiveModelManager));
} }
} }