When are events handled when already executing? - c#

To set the stage, I have a custom class called Scheduler that holds multiple Task objects (this is a custom class as well). Each task has a BackgroundWorker object to run long running work. I am currently doing some testing of having many of these tasks executing quickly and being handled at the same time.
In my Task object, I raise an a custom event (TaskCompletedEvent) in the TaskWorkerCompleted handler to alert the scheduler that a task is completed. The scheduler uses the same event handler for every task's TaskCompletedEvent.
What I want to know is if I am currently in the Scheduler TaskCompletedEvent handler executing code and another event finishes up, what happens? Both are going to be on the UI Thread, so does the one currently in the event handler finish up before the other one proceeds? I'm getting confused on what is going to happen when two events finish simultaneously and need to be handled.

No, the events themselves don't know about the UI threads. So the events will be dispatched in the same thread where they are fired (this is most probably in the backgroundworker's thread, right?)
If your both events are fired in the UI thread, this cannot be simultaneous (after all, the UI thread is executing either one or another event firing code), so the second event isd perhaps going to be fired when the first event is finished with firing and dispatching.
If you want the Scheduler to marshal the events to the UI thread, that is a slightly different story. Your code which needs to be executed at the UI thread will be actually posted into a kind of event queue of that thread, and whatever event-firing code happens to be first, gets executed first.

Related

In the execution of a program, are events like threads? WPF

I have a background worker thread continuously updating the data displayed in a window from a network source. I also have a button which will fire an event.
My question is, at what stage (relative to the background worker execution) is the event method executed? Is it similar to threads in that they happen simultaneously? I.e, will the background worker will still be running whilst my button click method is executing? In which case, I will need to use locking. Or will the background worker pause until the button click method has terminated?
Events raised by UI controls (e.g. buttons) execute in the main thread, a.k.a. the UI thread. Events you raise yourself are raised on whatever thread you raise them on. All event raisings block the execution of their own thread until they complete. They're not very special, when you call them: Just a little syntactic sugar around calling an arbitrary list of delegates.
In the absence of any explicit synchronization code, any other threads humming along the background will merrily continue to execute.
If you need or want to communicate between an event handler in the UI thread and a worker thread, you'll need to write explicit code to do so. Nothing special here: Just two threads.
And if you've got both an event handler and a thread putting their greasy little mitts on the same object, and if the operations on that object are not atomic, you're correct: You'll need locking. Thread-safe collections may come in handy.

Are event handlers guaranteed to run on the UI thread

Are event handles like this
notifyIcon.BalloonTipClosed += new EventHandler(delegate(Object sender, EventArgs e)
{
// ...
});
guaranteed to run on the UI thread, so I don't need to call Invoke or BeginInvoke methods to update controls?
Thanks in advance.
Yes, they are.
User interface events are caused by a message in the message queue, and it's the UI thread that runs the message pump that handles the messages.
An event from the System.Timers.Timer class would not run in the UI thread, because it's not an UI related event. An event from the System.Windows.Forms.Timer class would run in the UI thread, as it's designed to run in a window and uses the message queue for the events.
To be clear - event handlers for events raised by UI objects should be. Event handlers, in general, no.
E.g. event handlers for NetworkAvailabilityChanged won't be called on the UI thread.
But within the classes for e.g the System.Windows.Forms namespace, yes, they should be.
Event Handlers, that are associated with the UI, run on the UI thread, the primary thread of a desktop application. That's the reason in some cases your UI may be get frozen. This is happening because the event handler's code takes too much to be executed in these cases. For this reason, we have adopted the paradigm of asynchronous programming. So when we have to wait for an I/O or a network related task to be completed, it's ins't needed this to be done by the UI thread. This can be done by another thread. Doing so, we avoid to freeze the UI.

Why does the BackgroundWorker's ProgressChanged event work without calling RunWorkerAsync?

I have a question regarding the BackgroundWorker. I can call the ProgressChanged event without having started the thread with RunWorkerAsync.
I don't understand why this works. How can it notify the original thread if the new thread didn't even start yet?
This seems to work regardless, since it updates the GUI without a problem, which wasn't like this before I implemented the BackgroundWorker.
Calling ReportProgressChanged() will always raise the ProgressChanged event regardless of which thread it was called from.
Inside the inplementation of ReportProgressChanged() is a mechanism which raises the event on the UI thread if it wasn't called from the UI thread. If ReportProgressChanged() is being called from the UI thread, then it just raises the event without needing to do that extra marshalling.

C# event subscription limits for single threaded programs

I'm attempting to monitor the status of many HPC jobs running in parallel in a single threaded program, I'm subscribing to events raised by OnJobState and when monitoring as few as three jobs event state changes will go missing and the job is stuck running.
I'm assuming I need a thread per job to catch all the events but I can't find any information about the limits of events subscripton in a single thread program.
I would have thought the .net platform would queue this all up but that doesn't appear to be the case.
Events are synchronous by default. That means that the object that raises an event will continue its execution only after all event handlers finished their work. The event handlers will run on the same thread as the object that raises the event. That leads to the following conclusions:
The .NET framework can't queue anything, because the events are raised one after another
You should not do heavy computing in event handlers. If the events are fired in rapid succession, even moderate computing should be avoided.
If you want queuing, you need to implement it yourself: In your event handler, add the info about the new event to a thread safe queue and process this queue from another thread.
I made this question more general to remove the confusion over HPC, looks like I have no control over how my event hander is executed so I need to make it thread safe.

Is it possible that GUI event interrupts running code from the GUI thread to execute its own event handler method?

I have a weird behavior in my GUI code. If the user produces a lot of events in a short time, it happens that a running event handler method gets interrupted by another event handler method.
Since everything runs in the same thread (GUI thread) everything should run sequential and an interruption should not be possible, or do I misunderstand something?
Thanks for your advise,
Eny
No, that doesn't happen. You are right in your understanding that the thread runs sequentially.
The GUI thread can be interrupted but only to run a different thread, it will not re-enter the GUI thread to handle another event. A thread only has one instruction pointer and thus can only be in one place in the code, it can not be interrupted by itself.
If you are experiencing something that look like the GUI thread is re-entered, the reason is something else.
The GUI thead can however "interrupt" itself by calling the Application.DoEvents method.
You are correct, in a single threaded application, event should be run sequentially. There are a few exceptions:
An event is fired and calls the first event handler in its subscriber list. The event handler fires an event of its own, which calls other event handlers. In this case, it would appear that the event was interrupted, but it was not. When the original event handler completes, the next event handler in the list will be called.
An event handler calls the Application.DoEvents() method. This will suspend the current event and process any messages waiting in the message queue (which will usually fire events of their own), and when it has finished processing all messages, it will return to the event. A problem may occur when Application.DoEvents() causes a recursive call to the event which called it, as a result of firing an event from one of the messages it processed.
Event handlers may be executed on different threads. Some events are not fired on the UI thread, and may fire on their own thread. This could cause events to be fired out of order and interrupt each other on a thread contexts switch. Make sure that the events you consume are fired on the UI thread, and if not, Control.Invoke() them onto the UI thread. An example of an event that is fired on a separate thread, possibly without you being aware of it, is the System.Threading.Timer.Elapsed event.

Categories

Resources