WeakReference and event handling - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T06:02:59Z http://stackoverflow.com/feeds/question/185931 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/185931/weakreference-and-event-handling 6 WeakReference and event handling Cherian 2008-10-09T04:18:30Z 2008-10-09T15:59:52Z <p>Is it a good practice to implement event handling through WeakReference if that event is the only thing holding the reference and that we would need the object to be garbage collected? </p> <p>As an argument to this: </p> <p>Folks say that if you subscribe to something it’s your responsibility to unsubscribe and you should do it.</p> http://stackoverflow.com/questions/185931/weakreference-and-event-handling/186092#186092 -1 Answer by Samuel Kim for WeakReference and event handling Samuel Kim 2008-10-09T06:12:59Z 2008-10-09T06:12:59Z <p>While what you suggest solves one set of problems (event reference management and memory leak prevention), it is likely to open up a new set of problems.</p> <p>One problem I can see is during event handling process if the source object is garbage collected (as it was only held with a weak reference), any code that access the source object will result in null reference exception. You can argue that the event handler should either not access the source object or it must have a strong reference, but it can be argued that this could be a worse problem than the one you are trying to solve in the first place.</p> http://stackoverflow.com/questions/185931/weakreference-and-event-handling/186374#186374 2 Answer by Ilya Ryzhenkov for WeakReference and event handling Ilya Ryzhenkov 2008-10-09T08:17:29Z 2008-10-09T08:17:29Z <p>Weak delegate pattern is something that should be there in CLR. Normal events exhibit "notify me while you are alive" semantics, while often we need "notify me while I'm alive". Just having delegate on WeakReference is wrong, because delegate is an object too and even when recepient is still alive and have incoming references, delegate itself is only being referenced by said WeakReference and will be collected instantly. See <a href="http://blogs.msdn.com/greg_schechter/archive/2004/05/27/143605.aspx" rel="nofollow">this old post</a> for an example of implementation. </p> http://stackoverflow.com/questions/185931/weakreference-and-event-handling/186398#186398 1 Answer by Glenn Block for WeakReference and event handling Glenn Block 2008-10-09T08:24:34Z 2008-10-09T08:24:34Z <p>Weak references in their own right, don't solve the problem as the delegate holds the reference. In the Composite Application Library which ships with Prism (www.microsoft.com/compositewpf) there is a WeakDelegate class that you could pull from the source. The WeakDelegate basically ues reflection and creates a delegate only for a moment in time and then releases it, thereby no holding any pointers. Within CAL it is used by the EventAggregator class, but you are free to rip it out for your own usage as it is under MS-PL.</p> http://stackoverflow.com/questions/185931/weakreference-and-event-handling/187471#187471 0 Answer by siz for WeakReference and event handling siz 2008-10-09T14:18:20Z 2008-10-09T14:18:20Z <p>You can take a look at how this problem is approached in WPF here: <br/> <a href="http://msdn.microsoft.com/en-us/library/aa970850.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa970850.aspx</a></p> http://stackoverflow.com/questions/185931/weakreference-and-event-handling/187947#187947 4 Answer by Ed Ball for WeakReference and event handling Ed Ball 2008-10-09T15:59:52Z 2008-10-09T15:59:52Z <p>It is good to get in the habit of unsubscribing from events when you can, but sometimes there isn't an obvious "cleanup" method where it can be done. We recently posted a <a href="http://code.logos.com/blog/2008/08/event_subscription_using_weak_references.html" rel="nofollow">blog article</a> on this subject; it includes methods that make it easy to subscribe to an event with a WeakReference.</p>