gpt4 book ai didi

c# - 我如何在 C# 中等待一段时间(Windows 服务)

转载 作者:太空狗 更新时间:2023-10-30 01:21:32 25 4
gpt4 key购买 nike

我在 C# 上创建了 Windows 服务。现在我有扫描数据库的方法。我需要每分钟调用此方法两次。其实我不知道在windows服务中等待的方法。我试过 Thread.Sleep...但什么也没发生。请帮我解决这个问题。

private int wait;
protected void Start()
{
wait = 1000;
while (true)
{
if (wait < 30000)
wait += wait;

//implement logic for waiting

Video video = new Video();
video.FindFileForConvert();
if (video.Path != null)
{
Console.WriteLine("video != null. video path = {0}", video.Path);
video.BeginConvertation();
video.DeleteOriginFile();
wait = 1000;
}
}
}

最佳答案

你应该使用 System.Threading.Timer对于相同的。因为 Thread.sleep 至少在某些情况下不是一个好的做法。

关于c# - 我如何在 C# 中等待一段时间(Windows 服务),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15357731/

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