vote up 6 vote down star
5

I have come across what must be a common problem. When I have an event which may be subscribed to by several different classes, an exception thrown by one of these classes will kill the callback chain; as I do not know a priori in what order the callback is carried out, this can result in unpredictable state changes for some classes and not for others.

In the bible (CLR via C#, I am using C# 2.0) there is a short paragraph about using MulticastDelegate.GetInvocationList to get around this, but nothing more. So my question is: what is the best way to deal with this? Do I have to use MulticastDelegate.GetInvocationList every time I have an event?? Or do I need to enclose all methods which may be called as part of the delegate chain in some kind of rollback mechanism? Why are all these options so complicated in comparison to the simple event/delegate model which is so easy to use in C#? And how can I use the simple way without ending up with corrupted state?

Thanks!

flag

71% accept rate
note reply to your comment – Marc Gravell Jan 12 '09 at 10:09

2 Answers

vote up 6 vote down check

If you simply invoke a delegate, it will call all the target methods in order. You need to use GetInvocationList if you want to execute them individually - for example:

  • to check Cancel after each
  • to capture the return value of each
  • to continue after failure of an individual target

As for the best way to use it: how do you want it to behave? It isn't clear to me... for example, this might suit an extension method quite well:

static void InvokeIgnoreErrors(this EventHandler handler,
        object sender) {
    if(handler != null) {
        foreach(EventHandler subHandler in handler.GetInvocationList()) {
            subHandler(sender, EventArgs.Empty);
        }
    }
}

Then you can just call myHandler.InvokeIgnoreErrors(this); (for example).

Another example might be:

static bool InvokeCheckCancel(this CancelEventHandler handler,
        object sender) {
    if(handler != null) {
        CancelEventArgs args = new CancelEventArgs(false);
        foreach(CancelEventHandler subHandler in handler.GetInvocationList()) {
            subHandler(sender, args);
            if(args.Cancel) return true;
        }
    }
    return false;
}

which stops after the first event requests cancellation.

link|flag
OK, this seems like a nice use for extension methods. Unfortunately I am stuck in C# 2.0 - any ideas how I could do it elegantly here? Thanks! – Joel in Gö Jan 12 '09 at 9:33
Just use a static method, then. Remove the "this", and just use YourUtilityClass.InvokeIgnoreErrors(myHandler, this); – Marc Gravell Jan 12 '09 at 10:08
vote up 1 vote down

Rather than changing how you invoke events, I think you should review your event handlers. In my opinion event handler methods should always be written so they are "safe" and never let exceptions propagate. This is particularly important when you're handling events in GUI code where the event is invoked by external code, but a good habit to have at all times.

link|flag
What do you mean by 'propagate'? I clearly may need method #3 in my delegate chain to inform me if it has crashed, as I may then have to roll back any changes carried out in methods #1 and #2 (but not method #4). – Joel in Gö Jan 12 '09 at 11:29
Then you are misusing the observer pattern, the point of using events is as a loosely coupled notification system. Here not only do the subscribers and publisher need to know implementation details of each other, the subscribers must know implementation details about other subscribers as well. – Stephen Martin Jan 12 '09 at 17:19
That said there are definitely cases where you would want to use the invocation list rather than just invoking the delegate directly as Marc has described. – Stephen Martin Jan 12 '09 at 17:22
I meant 'propagate' as in 'spread, reproduce', i.e. exceptions that occur in an event handler should be handled there and not bubble up to the invoker. – Helen Toomik Jan 12 '09 at 20:25
And ditto to what Stephen Martin says in his comment. Event subscribers should be independent of each other, and the source should function without any listeners. I like to think of it as a radio station. – Helen Toomik Jan 12 '09 at 20:30
show 1 more comment

Your Answer

Get an OpenID
or

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