-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathHostedServices.cs
66 lines (56 loc) · 1.73 KB
/
HostedServices.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
class HostedServices : IRunnable
{
public async Task Run()
{
using (var host = CreateHostBuilder().Build())
{
this.PrintStart();
await host.StartAsync();
await Task.Delay(5000);
this.PrintStop();
await host.StopAsync();
}
}
static IHostBuilder CreateHostBuilder(string[] args = null) =>
Host.CreateDefaultBuilder(args ?? Array.Empty<string>())
.ConfigureLogging(logging =>
{
logging.ClearProviders();
})
.ConfigureServices(services =>
{
services.AddHostedService<Worker>();
});
class Worker : BackgroundService
{
public override Task StartAsync(CancellationToken cancellationToken)
{
this.PrintStart();
return base.StartAsync(cancellationToken);
}
protected override async Task ExecuteAsync(CancellationToken stoppingToken)
{
while (!stoppingToken.IsCancellationRequested)
{
this.PrintWorking();
await Task.Delay(1000, stoppingToken);
}
}
public override Task StopAsync(CancellationToken cancellationToken)
{
this.PrintStopped();
return base.StopAsync(cancellationToken);
}
public override void Dispose()
{
this.PrintDisposed();
base.Dispose();
}
}
}