3
votes
6answers
279 views
For a windows service, which is better, a wait-spin or a timer?
This question about Timers for windows services got me thinking:
Say I have (and I do) a windows service thats waiting on a WaitHandle and when woken, it dives into a wait-spin like I have shown …
2
votes
3answers
35 views
Producer Consumer With AutoResetEvent
I'm trying to use the producer consumer pattern to process and save some data. I'm using AutoResetEvent for signalling between the two therads here is the code I have
Here is the producer function
…
2
votes
1answer
356 views
WaitHandle.WaitAny and Semaphore class
Edit: I'd like to plead temporary insanity for even asking this question, but it made sense at the time (see edit 2 below).
For a .NET 3.5 project, I have two types of resources (R1 and R2) that I …
2
votes
2answers
145 views
Can a call to WaitHandle.SignalAndWait be ignored for performance profiling purposes?
I just downloaded the trial version of ANTS Performance Profiler from Red Gate and am investigating some of my team's code. Immediately I notice that there's a particular section of code that ANTS is …
1
vote
2answers
84 views
My EventWaitHandle says “Access to the path is denied”, but its not
Quick summary with what I now know
I've got an EventWaitHandle that I created and then closed. When I try to re-create it with this ctor, an "Access to the path ... is denied" exception is thrown. …
1
vote
1answer
87 views
Is mutex correctly implemented and how do I dispose it?
I am reviewing some code and one of the code analysis (fxCop) warnings has gotten me very confused. The code implements a few mutex's by creating variables at the start of the class, similar to this:
…
1
vote
4answers
421 views
Run Message Loop while waiting for WaitHandle
Is there any way to process all Windows messages while the UI thread is waiting on a WaitHandle or other threading primitive?
I realize that it could create very messy reentrancy problems; I want to …
0
votes
2answers
33 views
AJAX - timed mySQL queries (please wait screen)
I need to make an AJAX page which queries the database on page load and then every 5-10 seconds after that. In the meantime I will display some kind of waiting page (maybe with a animated gif to keep …
0
votes
2answers
114 views
WaitHandle.WaitAny() & WaitHandle.WaitAll() usage problem…
My application is not exiting properly. I am just trying to print the total number of connections, after that waiting for all the upload operations to complete, and then quit gracefully.
Below is the …
