You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.6 KiB
60 lines
1.6 KiB
using Tiobon.Core.Common;
|
|
using Tiobon.Core.IServices;
|
|
using Microsoft.Extensions.Hosting;
|
|
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Tiobon.Core.Tasks
|
|
{
|
|
public class Job1TimedService : IHostedService, IDisposable
|
|
{
|
|
private Timer _timer;
|
|
private readonly ITiobonArticleServices _TiobonArticleServices;
|
|
|
|
// 这里可以注入
|
|
public Job1TimedService(ITiobonArticleServices TiobonArticleServices)
|
|
{
|
|
_TiobonArticleServices = TiobonArticleServices;
|
|
}
|
|
|
|
public Task StartAsync(CancellationToken cancellationToken)
|
|
{
|
|
Console.WriteLine("Job 1 is starting.");
|
|
|
|
_timer = new Timer(DoWork, null, TimeSpan.Zero,
|
|
TimeSpan.FromSeconds(60 * 60));//一个小时
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
private void DoWork(object state)
|
|
{
|
|
try
|
|
{
|
|
var model = _TiobonArticleServices.GetTiobonDetails(1).Result;
|
|
Console.WriteLine($"Job 1 启动成功,获取id=1的博客title为:{model?.btitle}");
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Console.WriteLine($"Error:{ex.Message}");
|
|
}
|
|
|
|
ConsoleHelper.WriteSuccessLine($"Job 1: {DateTime.Now}");
|
|
}
|
|
|
|
public Task StopAsync(CancellationToken cancellationToken)
|
|
{
|
|
Console.WriteLine("Job 1 is stopping.");
|
|
|
|
_timer?.Change(Timeout.Infinite, 0);
|
|
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_timer?.Dispose();
|
|
}
|
|
}
|
|
}
|
|
|