Multithreaded Delegates/Events

Posted by Matt on Stack Overflow See other posts from Stack Overflow or by Matt
Published on 2010-05-05T21:56:02Z Indexed on 2010/05/05 22:08 UTC
Read the original article Hit count: 230

Filed under:
|
|
|

I am trying to disable parts of the UI in a .NET app based on polling done on a background thread. The background thread checks to see if the global database connection the app uses is still open and operable.

What I need to do, and would prefer to do it without polling on the UI thread, is to add an event handler that can be raised by the background thread if the connection status changes. That way, any form can have a handler that will disable those parts of the UI that require the connection to function.

Attempting to use a straight event declaration in the class that holds the thread sub, and raising the event in the background thread causing cross-thread execution errors regarding accessing UI controls from other threads.

Obviously, there is a correct way to do this, but we have limited experience with events (single threaded apps mainly), and almost none with delegates. I've read through documentation and examples for delegates, and it seems to be closer to what we need, but I'm not sure how to make it work in this instance.

The app is written mainly in VB.NET, but an example or help in C# is fine too.

© Stack Overflow or respective owner

Related posts about multithreading

Related posts about events