在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<MyBackgroundService>();
}
}
或者
public class Program
{
public static async Task Main(string[] args)
{
// 創建并啟動 HostBuilder
var host = new HostBuilder()
.ConfigureServices((context, services) =>
{
// 注冊 BackgroundService
services.AddHostedService<MyBackgroundService>();
})
.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<MyBackgroundService>();
})
.Build();
// 啟動 Host
await host.RunAsync();
// 等待應用程序關閉
await host.WaitForShutdownAsync();
}
現在,您的MyBackgroundService
將在后臺運行,并在需要時處理任務中斷和應用程序關閉。