2

我正在使用 Filesystemwatcher 获取文件,将其转换为 UTF-8 并将其传输到目的地。现在我想要实现的是我需要延迟将 xml 写入目标。即仅 15-20 秒。我知道我可以在这里使用以下内容:

System.Threading.Thread.Sleep(milliseconds);

但是如果我这样做,它会完全延迟线程,不是吗。filesystemwatcher 会发生什么,它会停止拾取文件吗?我的目标是延迟但不要错过任何将在源文件夹中更改的文件。这是我目前的做法:

var doc = new XmlDocument();
doc.Load(FileName);
XmlWriterSettings settings = new XmlWriterSettings { Encoding = Encoding.UTF8, Indent = true };
using (var writer = XmlWriter.Create(destinationFile, settings))
{
    System.Threading.Thread.Sleep(15000);
    doc.Save(writer);
}

这将停止线程并延迟写入我想要的 xml 文件。但是文件系统观察者会发生什么,它也会停止 - 因为它是同一线程的一部分。

4

3 回答 3

2

您可以使用System.Threading.Timer

var doc = new XmlDocument();
doc.Load(FileName);
XmlWriterSettings settings = new XmlWriterSettings { Encoding = Encoding.UTF8, Indent = true };

new System.Threading.Timer((_) =>
    {
        using (var writer = XmlWriter.Create(destinationFile, settings))
        {
            doc.Save(writer);
        }
    })
.Change(15000, -1);
于 2013-04-11T10:39:00.027 回答
1

为您想要延迟的内容创建一个线程,为您不想延迟的内容创建一个单独的线程

编辑试试这个

System.Threading.Thread newThread;
newThread = new System.Threading.Thread(anObject.AMethod); // one to delay

System.Threading.Thread newThread2;
newThread2 = new System.Threading.Thread(anObject.AMethod); //one not to delay

然后将 添加Threadname.Start();到您要延迟的程序的开头,并将另一个添加到您不想延迟的程序的开头。然后延迟你想延迟使用的那个

System.Threading.Thread.Sleep(milliseconds);

就像你以前一样

希望这可以帮助

于 2013-04-11T09:39:19.000 回答
0

使用 BlockingCollection 怎么样?
它在 4.0 上可用。
Filesystemwatcher 是生产者,消费者是 xmlwrite。
你可以睡在消费者身上而不影响生产者。

BlockingCollection 类

于 2013-04-11T10:15:31.120 回答