Run some timers a little faster

This commit is contained in:
Loporrit
2025-05-14 10:13:49 +00:00
parent 4dd34039f4
commit e2e59bd396
4 changed files with 20 additions and 14 deletions

View File

@@ -169,7 +169,7 @@ public sealed class CacheCreationService : DisposableMediatorSubscriberBase
_ = Task.Run(async () =>
{
await Task.Delay(TimeSpan.FromSeconds(1), token).ConfigureAwait(false);
await Task.Delay(TimeSpan.FromMilliseconds(500), token).ConfigureAwait(false);
await AddPlayerCacheToCreate(kind).ConfigureAwait(false);
});
}
@@ -183,7 +183,7 @@ public sealed class CacheCreationService : DisposableMediatorSubscriberBase
_ = Task.Run(async () =>
{
await Task.Delay(TimeSpan.FromSeconds(3), token).ConfigureAwait(false);
await Task.Delay(TimeSpan.FromSeconds(1), token).ConfigureAwait(false);
await AddPlayerCacheToCreate().ConfigureAwait(false);
}, token);
}
@@ -197,7 +197,7 @@ public sealed class CacheCreationService : DisposableMediatorSubscriberBase
_ = Task.Run(async () =>
{
await Task.Delay(TimeSpan.FromSeconds(3), token).ConfigureAwait(false);
await Task.Delay(TimeSpan.FromSeconds(1), token).ConfigureAwait(false);
await AddPlayerCacheToCreate().ConfigureAwait(false);
}, token);
}
@@ -211,7 +211,7 @@ public sealed class CacheCreationService : DisposableMediatorSubscriberBase
_ = Task.Run(async () =>
{
await Task.Delay(TimeSpan.FromSeconds(2), token).ConfigureAwait(false);
await Task.Delay(TimeSpan.FromSeconds(1), token).ConfigureAwait(false);
await AddPlayerCacheToCreate().ConfigureAwait(false);
}, token);
}