Files
managing-apps/src/Managing.Application/Workers/LeaderboardWorker.cs
2025-08-05 17:53:19 +07:00

29 lines
838 B
C#

using Managing.Application.Abstractions.Services;
using Microsoft.Extensions.Logging;
using static Managing.Common.Enums;
namespace Managing.Application.Workers;
public class LeaderboardWorker : BaseWorker<LeaderboardWorker>
{
private readonly IStatisticService _statisticService;
private static readonly WorkerType _workerType = WorkerType.LeaderboardWorker;
public LeaderboardWorker(
ILogger<LeaderboardWorker> logger,
IServiceProvider serviceProvider,
IStatisticService statisticService) : base(
_workerType,
logger,
TimeSpan.FromHours(24),
serviceProvider
)
{
_statisticService = statisticService;
}
protected override async Task Run(CancellationToken cancellationToken)
{
await _statisticService.UpdateLeaderboard();
}
}