定时器不执行代码的c# Windows服务
本文关键字:Windows 服务 代码 执行 定时器 | 更新日期: 2023-09-27 18:19:18
我有以下代码,当windows服务启动时不执行
我在这里找到了解决方法,但它们对我不起作用。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Configuration;
using System.Threading.Tasks;
namespace TFS_JIRA_sync
{
public partial class SyncProcess : ServiceBase
{
public SyncProcess()
{
InitializeComponent();
}
private System.Timers.Timer timer = new System.Timers.Timer();
protected override void OnStart(string[] args)
{
this.timer.Interval = ScanPeriod.period * 60000; //turn minutes to miliseconds
this.timer.Elapsed += new System.Timers.ElapsedEventHandler(this.OnTimer);//OnTimer;
this.timer.Enabled = true;
this.timer.AutoReset = true;
this.timer.Start();
}
private void OnTimer(object sender, System.Timers.ElapsedEventArgs e)
{
Processing proc = new Processing();
proc.doProcess();
}
protected override void OnStop()
{
}
}
}
程序:
using System;
using System.Collections.Generic;
using System.ServiceProcess;
using System.Threading.Tasks;
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
namespace TFS_JIRA_sync
{
static class Program
{
/// <summary>
/// Главная точка входа для приложения.
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new SyncProcess()
};
ServiceBase.Run(ServicesToRun);
//Processing proc = new Processing();
//proc.doProcess();
}
}
}
当我注释部分开始"ServiceBase[]…"和取消注释"Processing…"在Programm类它工作正常。
但是当我的代码作为Windows服务运行时-什么都没有发生
正如我所看到的,您的服务不会一直运行this.timer.Interval = ScanPeriod.period * 60000;
。对于您的场景与其使用带有计时器的windows服务(并花时间解决这个问题),我建议使用计划任务(正如这个答案所建议的那样)。它引用了Jon Gallow的一篇文章,该文章给出了许多使用计划任务更好的原因。
如果你正在编写一个运行计时器的Windows服务,你应该重新评估你的解决方案。
在代码中添加Console.ReadLine():
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new SyncProcess()
};
ServiceBase.Run(ServicesToRun);
Console.ReadLine();
}