.NET 中 NSOperationQueue 的等效项
只是想知道是否有人可以告诉我 NSOperationQueue(来自 MacOS/iOS)在 c#/.Net 中的等效项是什么。
对于那些不熟悉它的人来说,它是一个线程队列。您可以设置优先级以及并发操作,它将通过队列运行您一次设置的线程数。一旦线程完成,就会加载一个新线程。
谢谢,本
Just wondering if anyone can tell me what the equivalent of NSOperationQueue (from MacOS/iOS) is in c#/.Net.
For those unfamiliar with it, it is a queue of threads. You can set priorities and also concurrent actions and it will work through the queue running how ever many threads you set at a time. Once the thread is complete a new one is loaded.
Thanks, Ben
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
System.Threading.ThreadPool的功能类似。
http://msdn.microsoft.com/en-us/library /system.threading.threadpool.aspx
System.Threading.ThreadPool is similar in function.
http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx
我已经有一段时间没有编写大量 C# 代码了,但我曾经使用 线程池。让它变得非常简单,就像 NSOperationQueue 一样。
It's been a while since I've done much C# code, but I used to use ThreadPools. Makes it real easy, like the
NSOperationQueue
.