Equivalent to NSOperationQueue in .NET.

Just wondering if anyone can tell me that the equivalent of NSOperationQueue (from MacOS / iOS) is in C # /. Net.

For those who are not familiar with it, this is the queue of threads. You can set priorities, as well as simultaneous actions, and it will work through a queue that runs so many threads that you set at a time. When the stream is completed, a new one is loaded.

Thanks Ben

+4
source share
2 answers

System.Threading.ThreadPool is similar to a function.

http://msdn.microsoft.com/en-us/library/system.threading.threadpool.aspx

+6
source

It has been a while since I did a lot of C # code, but used ThreadPools . Makes it very easy, like NSOperationQueue .

+2
source

Source: https://habr.com/ru/post/1341250/


All Articles