Tagged Questions

13
votes
4answers
3k views

Workaround for the WaitHandle.WaitAll 64 handle limit?

My application spawns loads of different small worker threads via ThreadPool.QueueUserWorkItem which I keep track of via multiple ManualResetEvent instances. I use the WaitHandle.WaitAll method to ...
8
votes
6answers
2k views

Do I need to call Close() on a ManualResetEvent?

I've been reading up on .NET Threading and was working on some code that uses a ManualResetEvent. I have found lots of code samples on the internet. However, when reading the documentation for ...
7
votes
4answers
1k views

How to check if the WaitHandle was set?

I have a WaitHandle and I would like to know how to check if the WaitHandle has already been set or not. Note: I can add a bool variable and whenever Set() method is used set the variable to true, ...
5
votes
4answers
180 views

How do you close an application when some WaitHandle is in the middle of a call to WaitOne?

Is there a standard way to close out an application "cleanly" while some WaitHandle objects may be in the state of a current blocking call to WaitOne? For example, there may be a background thread ...
4
votes
6answers
773 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 ...
3
votes
1answer
99 views

Why does waiting on this Task for 1022 milliseconds work fine but 1023 causes an AggregateException?

Trying to implement a timeout parameter for connecting to a server but I'm not having much luck. Here's my code: client = new TcpClient(); Task task = Task.Factory.FromAsync(client.BeginConnect, ...
3
votes
3answers
314 views

How do I unblock threads which have called the WaitOne method on an AutoResetEvent object?

Below is a class having the method 'SomeMethod' that illustrates my problem. class SomeClass { AutoResetEvent theEvent = new AutoResetEvent(false); // more member declarations public ...
3
votes
1answer
128 views

Which code pattern is best for handling a cyclical and changeable flow of actions

My scenario is an application working cyclically on real time data and with tigh deadlines. I have a serie of actions to take on data at each cycle. I've actions that take place at each cycle (let's ...
3
votes
1answer
147 views

Combining Wait Handles?

Bit of an interesting one here I think. I have a class thats in charge of "multiplexing" a number of processing operations onto a fixed number of threads. The typical case is a sort of ...
3
votes
1answer
259 views

When can ManualResetEvent.Set() return false?

According the the MSDN documentation, Set() and Reset() on ManualResetEvent (or any EventWaitHandle) returns a boolean indicator whether or not the operation was successful. Under which circumstances ...
3
votes
1answer
437 views

Unit testing WaitHandler.WaitAll

Is there a way to unit test WaitHandle.WaitAll() when using Visual Studio's built-in unit testing solution. When I try and run a test that uses this function within Visual Studio the test fails and ...
3
votes
4answers
548 views

Running multiple threads, starting new one as another finishes

I have an application that has many cases. Each case has many multipage tif files. I need to covert the tf files to pdf file. Since there are so many file, I thought I could thread the conversion ...
3
votes
1answer
3k 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
1answer
290 views

C# Async WebRequests: Perform Action When All Requests Are Completed

I have this basic scraping console application in C# that Asynchronously uses WebRequest to get html from a list of sites. It works fine, but how do I set up a trigger that goes off when every site in ...
2
votes
3answers
1k views

Make asynchronous call synchronize

I trying to synchronize a asynchronous call. The regular (async) flow look like: Asking the server for data using telnet: 'Session.sendToTarget(message)' The app move on doing other things.... When ...
2
votes
2answers
905 views

How should I implement the C# server side portion of long-polling for ajax requests?

I've got an architecture that involves browsers polling via ajax every 3 seconds for updates and I'd like to change that to long-polling. I'd like to have 1, 2.. {n} clients long-polling, waiting for ...
2
votes
1answer
420 views

How-to dispose a waithandle correctly

I'm doing some multi-threading and use AutoResetEvents and ManualResetEvents do control my main - loop. When "destryoing" the threads I also have to dispose these signals, that's clear. But I saw ...
2
votes
1answer
174 views

A robust method of tracking failed workers with ThreadPool

I'm looking for a good method of tracking (counting) which workers have failed when queued with a Threadpool and using WaitHandle.WaitAll() for all threads to finish. Is Interlocking a counter a good ...
2
votes
3answers
307 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
4answers
2k 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 ...
1
vote
2answers
68 views

Can ManualResetEvent be used to supersede a boolean

This is admittedly an unusual question; I would never recommend replacing a boolean with a ManualResetEvent in typical .NET development. In this case, I already need a ManualResetEvent to indicate ...
1
vote
1answer
149 views

Thread persists after application termination due to AutoResetEvent signal in WaitOne state

I have an application that uses an AutoResetEvent (WaitOne/Set) in a queue for processing messages. I'm noticing that when I terminate the a debug session from Visual Studio (Shift+F5) the original ...
1
vote
6answers
195 views

When should I use a WaitHandle instead of a lock

In C#, when we should use WaitHandle instead of lock ?
1
vote
2answers
447 views

Is there a WaitOne method that essentially calls Reset first?

I'm using an AutoResetEvent where multiple Set calls can be made on an event (Exception handling). There are times when an extra Set is called, thus when the code makes a second call on a WaitOne ...
1
vote
6answers
2k views

What is the difference between Thread.Sleep(timeout) and ManualResetEvent.Wait(timeout)?

Both Thread.Sleep(timeout) and resetEvent.Wait(timeout) cause execution to pause for at least timeout milliseconds, so is there a difference between them? I know that Thread.Sleep causes the thread to ...
1
vote
1answer
1k views

C#: How to set AsyncWaitHandle in Compact Framework?

I'm using a TcpClient in one of my Compact Framework 2.0 applications. I want to receive some information from a TCP server. As the Compact Framework does not support the timeout mechanisms of the ...
1
vote
5answers
462 views

Multi-Threading - waiting for all threads to be signalled

I have scenarios where I need a main thread to wait until every one of a set of possible more than 64 threads have completed their work, and for that I wrote the following helper utility, (to avoid ...
1
vote
2answers
1k 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. ...
0
votes
1answer
86 views

Wrap an AutoResetEvent object in a restricted WaitHandle?

I've built a library that launches a thread to do it's thing and returns a WaitHandle to the caller. Looking at a bug report, I suspect the code that's calling my library is taking the returned ...
0
votes
3answers
273 views

Conditional periodic timer using wait handles

I need a timer equivalent which will periodically execute some specific actions (e.g. updating some progress in the database or checking for new Jobs to execute in a database). These actions are ...
0
votes
3answers
134 views

Multithreading: WaitAll doesn't wait as expected

I have a thread that is calling two separate threads to do somework. Whenever any of the jobs is finished a Waithandle.Set(0 is called and at the end of the parent worker thread I wanted to WaitAll ...
0
votes
2answers
70 views

How to substitute at runtime the WaitHandle that a thread should wait on

I'm wondering how to safely change at runtime the EventWaitHandle that a thread should wait on. Suppose for instance that there are two threads (A and C) that are synchronized through ...
0
votes
4answers
529 views

Threadpool/WaitHandle resource leak/crash

I think I may need to re-think my design. I'm having a hard time narrowing down a bug that is causing my computer to completely hang, sometimes throwing an HRESULT 0x8007000E from VS 2010. I have a ...
0
votes
1answer
2k views

Why doesn't my NamedPipeServerStream wait?

I'm working with a NamedPipeServerStream to communicate between two processes. Here is the code where I initialize and connect the pipe: void Foo(IHasData objectProvider) { Stream stream = ...
0
votes
2answers
92 views

Server multithreading overkill?

I'm creating a server-type application at the moment which will do the usual listening for connections from external clients and, when they connect, handle requests, etc. At the moment, my ...
0
votes
2answers
2k 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 ...