vote up 15 vote down star
6

I have seen a few mentions of this idiom (including on SO):

public event EventHandler AskQuestion = delegate {};  // deliberately empty subscriber

The upside is clear - it avoids the need to check for null before raising the event.

However, I am keen to understand if there are any downsides. For example, is it something that is in widespread use and is transparent enough that it won't cause a maintenance headache? Is there any appreciable performance hit of the empty event subscriber call?

flag

75% accept rate

9 Answers

vote up 8 vote down check

The only downside is a very slight performance penalty as you are calling extra empty delegate. Other than that there is no maintenance penalty or other drawback.

link|flag
vote up 0 vote down

Instead of "empty delegate" approach one can define a simple extension method to encapsulate the conventional method of checking event handler against null. It is described here and here.

link|flag
vote up 0 vote down

An extension method is not that useful IMHO, the thing is that not all events are EventHandlers.

link|flag
True, but they ought to be: codeproject.com/KB/cs/… – Benjol Jun 16 at 7:09
vote up 3 vote down

Instead of inducing performance overhead, why not use an extension method to alleviate both problems:

public static void Raise(this EventHandler handler, object sender, EventArgs e)
{
    if(handler != null)
    {
        handler(sender, e);
    }
}

Once defined, you never have to do another null event check again:

// Works, even for null events.
MyButtonClick.Raise(this, EventArgs.Empty);
link|flag
THAT is a fantastic idea! – Charlie Flowers Apr 3 at 0:08
1  
In fact, this belongs in the language or the framework! – Charlie Flowers Apr 3 at 0:08
See here for a generic version: stackoverflow.com/questions/192980/… – Benjol Jun 16 at 7:01
vote up 2 vote down

I would say it's a bit of a dangerous construct, because it tempts you to do something like :

MyEvent(this, EventArgs.Empty);

If the client throws an exception, the server goes with it.

So then, maybe you do:

try
{
  MyEvent(this, EventArgs.Empty);
}
catch
{
}

But, if you have multiple subscribers and one subscriber throws an exception, what happens to the other subscribers?

To that end, I've been using some static helper methods that do the null check and swallows any exception from the subscriber side (this is from idesign).

// Usage
EventHelper.Fire(MyEvent, this, EventArgs.Empty);


public static void Fire(EventHandler del, object sender, EventArgs e)
{
    UnsafeFire(del, sender, e);
}
private static void UnsafeFire(Delegate del, params object[] args)
{
    if (del == null)
    {
        return;
    }
    Delegate[] delegates = del.GetInvocationList();

    foreach (Delegate sink in delegates)
    {
        try
        {
            sink.DynamicInvoke(args);
        }
        catch
        { }
    }
}
link|flag
Not to nitpick, but dont you thing <code> if (del == null) { return; } Delegate[] delegates = del.GetInvocationList();</code> is a race condition candidate? – Cherian Nov 12 '08 at 12:30
Not quite. Since delegates are value types, del is actually a private copy of the delegate chain which is accessible only to the UnsafeFire method body. (Caveat: This fails if UnsafeFire gets inlined, so you'd need to use the [MethodImpl(MethodImplOptions.NoInlining)] attribute to inure against it.) – Daniel Fortunov Mar 12 at 21:29
vote up 2 vote down

It is my understanding that the empty delegate is thread safe, whereas the null check is not.

link|flag
vote up -2 vote down

Isn't one of the good things about using events is that even if nothing handles the event, you can still raise it? If there is no event handler, you should still be able to raise the event, without checking if anything handles it. At least, that's the way it works in VB.Net. You don't have to handle events at all, and if there is nothing to handle an event, you shouldn't experience any bad effects. Perhaps C# handles events differently from VB.Net, but I thought they were very much the same in this respect.

link|flag
VB.Net does some of the plumbing automatically that C# programs have to do manually. In C#, invoking an event with no handlers causes a null reference exception. – Jeffrey L Whitledge Oct 5 '08 at 4:15
vote up 7 vote down

For systems that make heavy use of events and are performance-critical, you will definitely want to at least consider not doing this. The cost for raising an event with an empty delegate is roughly twice that for raising it with a null check first.

Here are some figures running benchmarks on my machine:

For 50000000 iterations . . .
No null check (empty delegate attached): 530ms
With null check (no delegates attached): 249ms
With null check (with delegate attached): 452ms

And here is the code I used to get these figures:

using System;
using System.Diagnostics;

namespace ConsoleApplication1
{
    class Program
    {
    	public event EventHandler<EventArgs> EventWithDelegate = delegate { };
    	public event EventHandler<EventArgs> EventWithoutDelegate;

    	static void Main(string[] args)
    	{
    		//warm up
    		new Program().DoTimings(false);
    		//do it for real
    		new Program().DoTimings(true);

    		Console.WriteLine("Done");
    		Console.ReadKey();
    	}

    	private void DoTimings(bool output)
    	{
    		const int iterations = 50000000;

    		if (output)
    		{
    			Console.WriteLine("For {0} iterations . . .", iterations);
    		}

    		//with anonymous delegate attached to avoid null checks
    		var stopWatch = Stopwatch.StartNew();

    		for (var i = 0; i < iterations; ++i)
    		{
    			RaiseWithAnonDelegate();
    		}

    		stopWatch.Stop();

    		if (output)
    		{
    			Console.WriteLine("No null check (empty delegate attached): {0}ms", stopWatch.ElapsedMilliseconds);
    		}


    		//without any delegates attached (null check required)
    		stopWatch = Stopwatch.StartNew();

    		for (var i = 0; i < iterations; ++i)
    		{
    			RaiseWithoutAnonDelegate();
    		}

    		stopWatch.Stop();

    		if (output)
    		{
    			Console.WriteLine("With null check (no delegates attached): {0}ms", stopWatch.ElapsedMilliseconds);
    		}


    		//attach delegate
    		EventWithoutDelegate += delegate { };


    		//with delegate attached (null check still performed)
    		stopWatch = Stopwatch.StartNew();

    		for (var i = 0; i < iterations; ++i)
    		{
    			RaiseWithoutAnonDelegate();
    		}

    		stopWatch.Stop();

    		if (output)
    		{
    			Console.WriteLine("With null check (with delegate attached): {0}ms", stopWatch.ElapsedMilliseconds);
    		}
    	}

    	private void RaiseWithAnonDelegate()
    	{
    		EventWithDelegate(this, EventArgs.Empty);
    	}

    	private void RaiseWithoutAnonDelegate()
    	{
    		var handler = EventWithoutDelegate;

    		if (handler != null)
    		{
    			handler(this, EventArgs.Empty);
    		}
    	}
    }
}
link|flag
You're kidding, right? The invocation adds 5 nanoseconds and you're warning against doing it? I can't think of a more unreasonable general optimization than that. – Brad Wilson Oct 5 '08 at 0:33
Interesting. According to your findings it is faster to check for null and call a delegate than just to call it without the check. Doesn't sound right to me. But anyway this is such a small difference that I don't think it is noticeable in all but the most extreme cases. – Maurice Oct 5 '08 at 7:48
Brad, I specifically said for performance-critical systems that make heavy use of events. How is that general? – Kent Boogaart Oct 5 '08 at 8:56
vote up 0 vote down

If you are doing it a /lot/, you might want to have a single, static/shared empty delegate that you re-use, simply to reduce the volume of delegate instances. Note that the compiler caches this delegate per event anyway (in a static field), so it is only one delegate instance per event definition, so it isn't a huge saving - but maybe worthwhile.

The per-instance field in each class will still take the same space, of course.

i.e.

internal static class Foo
{
    internal static readonly EventHandler EmptyEvent = delegate { };
}
public class Bar
{
    public event EventHandler SomeEvent = Foo.EmptyEvent;
}

Other than that, it seems fine.

link|flag

Your Answer

Get an OpenID
or

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