vote up 4 vote down star
2

Something that confuses me, but has never caused any problems... the recommended way to dispatch an event is as follows:

public event EventHandler SomeEvent;
...
{
    ....
    if(SomeEvent!=null)SomeEvent();
}

In a multi-threaded environment, how does this code guarantee that another thread will not alter the invocation list of SomeEvent between the check for null and the invocation of the event?

flag

4 Answers

vote up 11 vote down check

As you point out, where multiple threads can access SomeEvent simultaneously, one thread could check whether SomeEvent is null and determine that it isn't. Just after doing so, another thread could remove the last registered delegate from SomeEvent. When the first thread attempts to raise SomeEvent, an exception will be thrown. A good way to avoid this scenario is:

void SomeEventInvoke(object sender, EventArgs args) 
{
    EventHandler ev = SomeEvent;
    if (ev != null) ev(sender, args);
}

This works because whenever a delegate is added to or removed from an event using the default implementations of the add and remove accessors, the Delegate.Combine and Delegate.Remove static methods are used. These methods return a new instance of a delegate, rather than modifying the ones passed to it.

In addition, assignments of object references in .NET are thread-safe, and the default implementations of the add and remove event accessors are synchronized. As such, the previous code succeeds by first copying the multicast delegate from the event to a temporary variable. Any changes to SomeEvent after this point will not affect the copy you've made and stored. Thus you can now safely test whether any delegates were registered and subsequently invoke them.

UPDATE: Note that this solution solves one race problem, namely that of an event handler being null when it's invoked. It doesn't handle the problem where an event handler is defunct when it's invoked. For example, if the event handler depends on state that's destroyed as soon as the handler is un-subscribed, then this solution might invoke code that cannot run properly. See Eric Lippert's excellent blog entry for more details. Also, see this StackOverflow question and answers.

link|flag
vote up 4 vote down

The simplest way remove this null check is to assign the eventhandler to an anonymous delegate. The penalty incurred in very little and relieves you of all the null checks, race conditions etc.

public event EventHandler SomeEvent = delegate {};

Related question: http://stackoverflow.com/questions/170907/is-there-a-downside-to-adding-an-anonymous-empty-delegate-on-event-declaration

link|flag
Why is this not marked as the "official" answer? This is the only good answer. – Justice Nov 12 '08 at 6:03
I don't agree. That method seems like a hack and does not make firing events "safe" or reliable, it only solves the null checking issue. Please see my explanation in the related thread. – Scott P Nov 12 '08 at 6:22
vote up 3 vote down

The recommended way is a little different and uses a temporary as follows:

EventHandler tmpEvent = SomeEvent;
if (tmpEvent != null)
{
    tmpEvent();
}
link|flag
so does that clone the invocation list then? – spender Nov 12 '08 at 0:55
yes -- I'll edit with an example. – dp Nov 12 '08 at 1:06
Alternatively you could call GetInvocationList into a temporary and execute each in order. – dp Nov 12 '08 at 1:12
dp, you don't need to do this. See my answer for why. – RoadWarrior Nov 12 '08 at 1:38
RW: agreed. I was trying to point out that essentially this does the same thing. Good answer. +1 – dp Nov 12 '08 at 18:47
vote up 0 vote down

Safer approach:


public class Test
{
    private EventHandler myEvent;
    private object eventLock = new object();

    private void OnMyEvent()
    {
        EventHandler handler;

        lock(this.eventLock)
        {
            handler = this.myEvent;
        }
        if (handler != null)
        {
            handler(this, EventArgs.Empty);
        }
    }

    public event MyEvent
    {
        add
        {
            lock(this.eventLock)
            {
                this.myEvent += value;
            }
        }
        remove
        {
            lock(this.eventLock)
            {
                this.myEvent -= value;
            }
        }

    }
}

-bill

link|flag

Your Answer

Get an OpenID
or

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