我制作了一个Windows服务,使用json字符串将性能数据发布到mySQL数据库。但是,此服务需要每分钟发布一次数据。我添加了一个计时器,但它似乎并不是每分钟都将数据发送到数据库。
我的项目中有2个班级。 程序类启动服务并运行性能代码。
public static string ServiceName = "performanceService";
static void Main(string[] args)
{
if (!Environment.UserInteractive)
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new ServiceControl()
};
ServiceBase.Run(ServicesToRun);
}
else
{
PerformanceCounter ramCount = new PerformanceCounter("Memory", "Available MBytes");
PerformanceCounter cpuCount = new PerformanceCounter("Processor", "% Processor Time", "_Total");
}
省略了剩余的代码。
然后我有一个ServiceControl类,实际上是一个Windows服务。在本课程中,我设置了我的计时器。
System.Timers.Timer timer = new System.Timers.Timer();
public ServiceControl()
{
ServiceName = Program.ServiceName;
InitializeComponent();
}
public void timerElapsed(object sender, EventArgs e)
{
Console.WriteLine("Time Elapsed");
}
protected override void OnStart(string[] args)
{
base.OnStart(args);
timer.Elapsed += new ElapsedEventHandler(timerElapsed);
timer.Interval = 60000;
timer.Enabled = true;
timer.Start();
}
protected override void OnStop()
{
base.OnStop();
timer.Enabled = false;
timer.Stop();
}
private void InitializeComponent()
{
//
// ServiceControl
//
this.ServiceName = "performanceService";
}
如果您希望查看其他任何代码,请告知我们。 我的代码中是否有任何错误,不允许服务以指定的时间间隔发布数据? 谢谢。
答案 0 :(得分:0)
我已将计时器放在Main(string[] args)
中。这是我的答案:
static void Main(string[] args)
{
System.Timers.Timer timer = new System.Timers.Timer();
timer.Interval = 300000; // 30 minutes
timer.Elapsed += new ElapsedEventHandler(serverCall);
timer.AutoReset = true;
timer.Start();
}