I have two long running tasks that read and write simultaneously from a network stream which requires me to use two different threads.
I have marked them as long running but according to the docs marking them as long running only recommends but doesn't guarantee that they will run on different threads.
Do I need to write my own Task Scheduler? Should I use the thread pool instead?
|
|
|||
|
|
|
If "network stream" means the
If so, that's only a suggestion - they're saying that if you do things this way, you don't need to do any synchronization. The main reason they're saying this is that But it's clear from the documentation that you also have the option to perform synchronization - they're just saying that synchronization is unnecessary if you choose to go down the path of having exactly one read thread, and exactly one write thread. But if for some reason you really do need two dedicated threads, then...I'd just use the |
|||||
|
|
LongRunning is a hint that it should be executed on a new Thread, instead of an existing thread in the ThreadPool. This is so you wont exhaust the ThreadPool with long-running tasks. There are no guarantees that two different threads will be used, neither in TPL, nor with the ThreadPool. For example, it could be the same thread executing both tasks synchronously. Have you looked into using asynchronous io instead? |
|||
|
|
|||
|
|
|
The LongRunning enum method overload tells the Task library to dedicate a thread to each task, regardless of the number of cores it can use. |
|||
|
|