-
Notifications
You must be signed in to change notification settings - Fork 0
/
Worker.cs
39 lines (38 loc) · 1.01 KB
/
Worker.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
namespace CherryDDNS
{
public class Worker : BackgroundService
{
private readonly ILogger<Worker> _logger;
public Worker(ILogger<Worker> logger)
{
_logger = logger;
}
private bool IsRunning = false;
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
try
{
if (IsRunning) { return; }
IsRunning = true;
LogManager.Startup();
while (!stoppingToken.IsCancellationRequested)
{
DDNSService.Instance.Update();
await Task.Delay(1000, stoppingToken);
}
}
catch (TaskCanceledException)
{
LogManager.Cancelled();
}
catch (Exception ex)
{
LogManager.Error(ex);
}
finally
{
IsRunning = false;
}
}
}
}