Search Results

0
votes

WCF Service & Request queueing

WCF service throttling will queue requests internally without any additional code. What are you trying to do? …
1
vote

How to write a MSTest unit test that listens for an event to be raised from another thread?

Use the WaitHandle classes in the System.Threading namespace. Either, AutoResetEvent or ManualResetEvent. The difference between the two is that AutoResetEvent lets one thread proceed each time it …
0
votes

How to avoid File Blocking

This could happen if one thread was attempting to read from the file while another was writing. To avoid this type of situation where you want multiple readers but only one writer at a time, make u …
1
vote

How to sync access to file between ASP.NET web site and ASP.NET web service on one web server

Use the ReaderWriterLock or ReaderWriterLockSlim (.NET 2.0) class from the System.Threading namespace to handle single writer / multiple reader cases. …
0
votes

catching exceptions from another thread

Use the BackgroundWorker class in the .NET framework instead. It is the best practice for performing UI work on a different thread. …
0
votes

Suspending and notifying threads when there is work to do

Use ManualResetEvent for cases where you want all worker threads to proceed when a state is met (looks like what you are wanting here). Use AutoResetEvent in cases where you only want to signal a s …