gpt4 book ai didi

c# - 使用 Thread.Sleep 时启动 .NET Windows 服务时出现问题

转载 作者:行者123 更新时间:2023-11-30 20:57:31 25 4
gpt4 key购买 nike

我已经创建了一个 .NET Windows 服务并从 bin/debug 文件夹安装了调试版本(是的,我知道这不是一个好方法,但我只是想能够测试它并附加调试器)。

该服务基本上在无限循环中运行,检查 FTP 目录中的文件,处理它们,休眠一分钟,然后循环。

当我尝试启动服务时出现以下错误

Error 1053: The service did not respond to the start or control request in a timely fashion

进一步检查,服务正在完成第一个循环,然后在第一个线程休眠期间超时。因此,我对如何启动该服务感到有些困惑。是我(缺乏)对线程的理解导致了这种情况吗?

我的起始码是

protected override void OnStart(string[] args)
{
eventLog.WriteEntry("Service started");
ThreadStart ts = new ThreadStart(ProcessFiles);
workerThread = new Thread(ts);
workerThread.Start();
}

在 ProcessFiles 函数中,一旦一个循环完成,我就拥有了

eventLog.WriteEntry("ProcessFiles Loop complete");
Thread.Sleep(new TimeSpan(0,1,0));

当我检查事件日志时,“ProcessFiles Loop complete”日志在那里,但这是服务超时之前的最后一个事件,无法启动。

谁能解释一下我做错了什么?

编辑

我在 ProcessFiles 函数中处理循环的方式如下

while (!this.serviceStopped)
{
// Do Stuff
eventLog.WriteEntry("ProcessFiles Loop complete");
Thread.Sleep(new TimeSpan(0,1,0));
}

干杯

斯图尔特

最佳答案

当我检查事件日志时,“ProcessFiles Loop complete”日志在那里...

您可能有一个文件处理代码,该代码在服务超时之前不会返回。您正尝试在间隔后执行某些任务,最好使用 System.Timers.TimerSystem.Windows.Forms.Timer而不是循环重复执行某些任务。

为了测试是否是循环问题,可以用sleep语句将循环限制为单次迭代,并检查服务是否启动。

protected override void OnStart(string[] args)
{
aTimer = new System.Timers.Timer(10000);
aTimer.Elapsed += new ElapsedEventHandler(OnTimedEvent);
aTimer.Interval = 60000;
aTimer.Enabled = true;
}

private static void OnTimedEvent(object source, ElapsedEventArgs e)
{
aTimer.Enabled = false;
// Put file processing code here.
aTimer.Enabled = true;
}

关于c# - 使用 Thread.Sleep 时启动 .NET Windows 服务时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16771958/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com