Is there any way to set a specific std::thread’s network usage priority levels? E.g. I have multiple threads downloading information, but not all of them should have the same network usage, as I want some of the threads to download specific information faster.
Is there any way to set a specific std::thread’s network usage priority levels? E.g.
Share
That’s not a threading issue and should not be dealt with a the thread level. Instead, you should somehow specify when initiating each download how prioritized it is. How to do that depends entirely on how you are doing the downloads and what (if any) quality of service services you have available in the network.