C# Express 2010 Multi-Threading

Posted by Chris Evans on Stack Overflow See other posts from Stack Overflow or by Chris Evans
Published on 2010-08-20T18:41:31Z Indexed on 2011/01/08 10:53 UTC
Read the original article Hit count: 188

Hi,

I have a windows app that I have been running in c# Express 2008 for a year and have been trying to convert it over the last few days to 2010. The problem I am having is it is a multi-threaded application that has to run a series of code every second. What it does is have a main thread, that calls 3 worker threads, waits for them to finish then does some additional processing, sleeps till 1 second and runs again.

The problem is part of the code can call a web service that takes 8 seconds to respond, so this bit of code gets called using ThreadPool.QueueUserWorkItem. The problem is when running in 2010 when this part of the code gets called the main thread continues to run but when it awakens the sub threads it hangs until the Threadpool method finishes running.

This never happens in 2008. Any suggestions? So far I put that bit of code in it's own thread rather than using Threadpool but same issue.

© Stack Overflow or respective owner

Related posts about c#

Related posts about multithreading