当查询大量远程网络PC时,如何在foreach循环中超时?
我正在使用 foreach 循环来查询远程电脑,由于某种原因,查询某些电脑时程序会粘在电脑上(也许它在查询过程中被关闭),我怎样才能等待一段时间(尽管固定的时间长度是没有什么好处,因为有些人可能需要几分钟才能查询其他人(30 分钟),然后转到下一台电脑?
foreach (String pc in pcs)
{
if (bg_worker.CancellationPending) break;
...
}
谢谢玉
I'm using a foreach loop to query remote PCs, for some reason querying a certain PCs the program sticks on the PC (maybe it's been turned off mid query), how can I wait for awhile (although a fixed length of time would be no good as some can take minutes to query others 30 mins) and then move on to the next PC?
foreach (String pc in pcs)
{
if (bg_worker.CancellationPending) break;
...
}
Thanks
Jade
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 线程池 进行查询同时适用于多个主机。这可以为您做三件事:
Use a threadpool to query for several hosts simultaneously. This does three things for you:
请参阅 http://www.codeplex.com/smartthreadpool 它支持工作项取消。
See http://www.codeplex.com/smartthreadpool It supports work item cancelation.