Which C# pattern has better performance to avoid duplicated event handlers?

前端 未结 4 788
你的背包
你的背包 2021-02-14 03:54

There are basically two patterns in avoiding duplicated registering of event handlers: (According to this discussion: C# pattern to prevent an event handler hooked twice)

<
相关标签:
4条回答
  • 2021-02-14 04:19

    I don't think this matters a lot, both in assumed performance gain and actual difference.

    Both GetInvocationList and -= walk the internal array _invocationList. (See source)

    The LINQ extension method Contains will take more time since it needs the entire array to be walked and converted, returned and then checked by Contains itself. The Contains has the advantage it doesn't need to add the event handler if it exists which will mean some performance gain.

    0 讨论(0)
  • 2021-02-14 04:28

    According the documentation, invocation list is being stored as array or something similar to it, and the order of the event handlers is being stored too. May be there are inner structure to maintain fast search for a particular method there.

    So in the worst case operation of the GetInvocationList().Contains(MyEventHandlerMethod); is O(1) (as we simply got the reference for the array) + O(n) for searching the method, even if there is no optimization for it. I seriously doubt that this is true, and I think that there is some optimizing code, and it is O(log_n).

    Second approach has additional operation of adding which is, I think, O(1), as we adding the event handler to the end.

    So, to see the difference between such actions, you need a lot of the event handlers.
    But! If you use the second approach, as I said, you'll add the event handler to the end of the queue, which can be wrong in some cases. So use the first one, and has no doubt in it.

    0 讨论(0)
  • 2021-02-14 04:28
    1. won't work for external callers, and is not very efficient anyway
    2. should be fine (note that it creates 2 delegate instances each time, though), however also consider
    3. in most scenarios, it should be easy to know whether you are already subscribed; if you can't know, then that suggests an architectural problem

    The typical usage would be "subscribe {some usage} [unsubscribe]" where the unsubscribe may not be necessary, depending on the relative lifetimes of the event publisher and subscriber; if you actually have a re-entrant scenario, then "subscribe if not already subscribed" is itself problematic, because when unsubscribing later, you don't know if you're preventing an outer iteration receiving the event.

    0 讨论(0)
  • 2021-02-14 04:36

    MyEvent -= MyEventHandlerMethodfirst need to find the registered event handler in the invocation list in order to remove it. So GetInvocationList().Contains is better, but it's truely insignificant.

    But, notice that you can't access event EventHandler foo's invocation list....

    0 讨论(0)
提交回复
热议问题