博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

asp.net core 2.0 后台定时自动执行任务

Posted on 2018-10-28 22:51  火冰·瓶  阅读(2662)  评论(0编辑  收藏  举报

自己写一个类继承BackgroundService

    internal class RefreshService : BackgroundService
    {
        protected override async Task ExecuteAsync(CancellationToken stoppingToken)
        {
            while (!stoppingToken.IsCancellationRequested)
            {
                  //需要执行的任务
                  await Task.Delay(60000, stoppingToken);//等待60秒
            }
        }
    }

  

Startup.cs中注入

        public void ConfigureServices(IServiceCollection services)
        {
            services.AddSingleton<Microsoft.Extensions.Hosting.IHostedService, RefreshService>();
        }