在C#中,BackgroundService
是用于在后台执行长时间运行任务的类,例如:定时清理缓存、发送电子邮件等。要使用BackgroundService
处理任务,请按照以下步骤操作:
- 首先,创建一个继承自
BackgroundService
的类:
using System.Threading; using System.Threading.Tasks; using Microsoft.Extensions.Hosting; public class MyBackgroundService : BackgroundService { protected override async Task ExecuteAsync(CancellationToken stoppingToken) { while (!stoppingToken.IsCancellationRequested) { // 在这里执行您的任务 await Task.Delay(1000); // 示例:等待1秒 } } }
- 在
Startup.cs
或Program.cs
中注册MyBackgroundService
:
public class Startup { public void ConfigureServices(IServiceCollection services) { // 注册 BackgroundService services.AddHostedService(); } }
或者
public class Program
{
public static async Task Main(string[] args)
{
// 创建并启动 HostBuilder
var host = new HostBuilder()
.ConfigureServices((context, services) =>
{
// 注册 BackgroundService
services.AddHostedService();
})
.Build();
// 启动 Host
await host.RunAsync();
}
}
- 若要处理任务的中断,可以在
ExecuteAsync
方法中检查stoppingToken.IsCancellationRequested
:
protected override async Task ExecuteAsync(CancellationToken stoppingToken) { while (!stoppingToken.IsCancellationRequested) { // 在这里执行您的任务 // 检查是否需要取消任务 if (stoppingToken.IsCancellationRequested) { break; } await Task.Delay(1000); // 示例:等待1秒 } }
- 若要在应用程序关闭时优雅地停止
BackgroundService
,可以在Program.cs
的Main
方法中调用host.WaitForShutdownAsync()
:
public static async Task Main(string[] args)
{
// 创建并启动 HostBuilder
var host = new HostBuilder()
.ConfigureServices((context, services) =>
{
// 注册 BackgroundService
services.AddHostedService();
})
.Build();
// 启动 Host
await host.RunAsync();
// 等待应用程序关闭
await host.WaitForShutdownAsync();
}
现在,您的MyBackgroundService
将在后台运行,并在需要时处理任务中断和应用程序关闭。