Tagged Questions
1
vote
3answers
33 views
Informing ThreadPool.QueueUserWorkItem about memory requirements
We are designing an application where users can set multiple tasks running simultaneously. We use ThreadPool.QueueUserWorkItem to set the tasks running. That part runs well.
We do have a problem ...
0
votes
3answers
229 views
One reader, many writers
Related: How to catch exceptions from a ThreadPool.QueueUserWorkItem?
I am catching exceptions in background threads started by ThreadPool.QueueUserWorkItem(), and propagating them to the main thread ...