首页 > Web开发 > 详细

Asp.Ner Core定时任务

时间:2019-04-09 22:55:40      阅读:348      评论:0      收藏:0      [点我收藏+]
AspNet Core定时任务

第一种方式BackgroundService

基于后台服务类BackgroundService实现,类所在命名空间Microsoft.Extensions.Hosting;添加定时服务类,示例如下

public class ServerTimeA : BackgroundService { private readonly ILogger<ServerTimeA> logger; public ServerTimeA(ILogger<ServerTimeA> logger) { this.logger = logger; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) { this.logger.LogInformation("StartA"); while (!stoppingToken.IsCancellationRequested) { this.logger.LogWarning("DoworkA..."); await Task.Delay(2000, stoppingToken); } this.logger.LogInformation("EndA..."); } } public class ServerTimeB : BackgroundService { private readonly ILogger<ServerTimeB> logger; public ServerTimeB(ILogger<ServerTimeB> logger) { this.logger = logger; } protected override async Task ExecuteAsync(CancellationToken stoppingToken) { this.logger.LogInformation("StartB"); while (!stoppingToken.IsCancellationRequested) { this.logger.LogWarning("DoworkB..."); await Task.Delay(3000, stoppingToken); } this.logger.LogInformation("EndB..."); } }
然后在Startup类中的ConfigureServices方法中添加 services.AddHostedService<ServerTimeA>(); services.AddHostedService<ServerTimeB>();

第二种方式Hangfire

第三种方式quarzt

第三种方式TimedJob

Asp.Ner Core定时任务

原文:https://www.cnblogs.com/zzr-stdio/p/10680319.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!