vote up 0 vote down star

If I set up multiple event handlers, like so:

_webservice.RetrieveDataCompleted += ProcessData1;
_webservice.RetrieveDataCompleted += ProcessData2;

what order are the handlers run when the event RetrieveDataCompleted is fired? Are they run in the same thread and sequentially in the order that are registered?

flag

4 Answers

vote up 4 vote down check

Currently, they are executed in the order they are registered. However, this is an implementation detail, and I would not rely on this behavior staying the same in future versions, since it is not required by specifications.

link|flag
This is important. It's entirely possible for a future version of something to, e.g., execute different handlers on different threads. Do not create a dependency on this implementation detail! – Greg D Oct 29 at 18:15
Executing on different threads is unlikely, since that would break compatibility drastically. However, a change of data structure for internal storage could change this behavior just as easily. – Reed Copsey Oct 29 at 18:21
I wonder, why the downvotes? This is exactly true, and answers the question directly... – Reed Copsey Oct 30 at 16:04
vote up 1 vote down

The invocation list of a delegate is an ordered set of delegates in which each element of the list invokes exactly one of the methods invoked by the delegate. An invocation list can contain duplicate methods. During an invocation, a delegate invokes methods in the order in which they appear in the invocation list.

From here: Delegate Class

link|flag
Thanks for the good answer, excerpt and link to the reference. – pst Oct 30 at 1:54
vote up 4 vote down

The order is arbitrary. You cannot rely on the handlers being executed in any particular order from one invocation to the next.

Edit: And also - unless this is just out of curiosity - the fact that you need to know is indicative of a serious design problem.

link|flag
vote up 2 vote down

They are run in the order in which they are registered. RetrieveDataCompleted is a Multicast Delegates. I am looking through reflector to try and verify, and it looks like an array is used behind the scenes to keep track of everything.

link|flag
Thanks for the reference. – pst Oct 30 at 1:54

Your Answer

Get an OpenID
or

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