36 lines
954 B
C#
36 lines
954 B
C#
using Managing.Application.Abstractions.Services;
|
|
using Managing.Application.Workers.Abstractions;
|
|
using Managing.Common;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Managing.Application.Workers;
|
|
|
|
public class SpotlightWorker : BaseWorker<SpotlightWorker>
|
|
{
|
|
private readonly IStatisticService _statisticService;
|
|
|
|
public SpotlightWorker(
|
|
ILogger<SpotlightWorker> logger,
|
|
IWorkerService workerService,
|
|
IStatisticService statisticService) : base(
|
|
Enums.WorkerType.Spotlight,
|
|
logger,
|
|
TimeSpan.FromMinutes(5),
|
|
workerService)
|
|
{
|
|
_statisticService = statisticService;
|
|
}
|
|
|
|
protected override async Task Run(CancellationToken cancellationToken)
|
|
{
|
|
try
|
|
{
|
|
await _statisticService.UpdateSpotlight();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError("Enable to update spotlight", ex);
|
|
throw;
|
|
}
|
|
}
|
|
} |