vote up 2 vote down star

I have a class containing a worker thread which receives data from a queue in a loop.

Another part of the app sinks an event from this class, which the class raises for each queue item.

These events are fired asynchronously, so at busy times the other part of the app can be processing several events at once.

This should be fine but we've discovered a scenario where this can cause problems.

We need a quick solution while the main issue gets addressed. Does the framework provide a simple way I can force the worker thread to wait while each event gets processed (so they are processed sequentially)? If not, what's the easiest way to implement this?

flag

55% accept rate
A small example of your code would be helpful, there multiple meanings to the word 'event'. – AnthonyWJones Feb 24 at 17:17
Strange question, you are basically saying "I am raising events asynchronously but I want to do it synchronously". Events are raised synchronously by default, just don't do the extra work of raising them asynchronously. – wcoenen Feb 24 at 17:37

6 Answers

vote up 3 vote down check

A simple answer would be to lock() on a single object in the event handler. All of the theads would wait to get the lock.

link|flag
Thanks Eric. I think I'll do that. – rc1 Feb 24 at 17:45
vote up 0 vote down

There is no general way.

In the end the handlers need to provide a mechanism for tracking.

If you are using BeginInvoke, rather than raising the events directly, you can use a wrapper, within which you call the real event handler synchronously, then raise the wrapper asynchronously. The wrapper can maintain a counter (with Interlocked operations) or set an event as meets your needs.

Something like:

TheDelegate realHandler = theEvent;
var outer = this;
ThreadPool.QuereUserWorkItem(x => {
  // Set start of handler
  realHandler(outer, eventArgs);
  // Set handler finished
};
link|flag
vote up 0 vote down

All of the event handlers sinking events raised by the queue-reading worker thread are called in the queue-reading worker thread. As long as the event handlers aren't spawning threads of their own, you should be able to wait for the event handlers to finish by calling Thread.Join() on the queue-reading worker thread.

link|flag
vote up 0 vote down

My guess is that you want to simply go away from triggering the action by raising an event and calling the method directly.

AFAIK events are going to be async and I am not aware of any "easy" ways of changing that.

link|flag
vote up 1 vote down

The ManualResetEvent class might help you here, unless I'm not understanding your question. You can use it to block the firing of the next event until the last one completes.

link|flag
vote up 0 vote down

Turns out there's another answer. You can just add the following attribute to the method.

[System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.Synchronized)]
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.