I've read conflicting opinions as to whether every BeginInvoke() has to be matched by an EndInvoke(). Are there any leaks or other problems associated with NOT calling EndInvoke()?
|
3
|
|||||
|
|
|
EndInvoke is not optional. More info here |
||||||||
|
|
|
It is not optional because calling BeginInvoke makes use of a WaitHandle which in turns makes use of a kernel object that maintains a count for how many references are had to it. Calling EndInvoke gracefully disposes the handle which decrements that counter on the kernel object and when that count reaches zero, the kernel object manager will destroy it. |
||
|
|
|
|
Its only optional if you don't mind your program's memory growing very large. The issue is that the GC is holding onto all of the references in your thread, because you might want to call EndInvoke at some point. I would go with Marc's answer, the threadpool will make your life easier. However, you need to watch out if you spawn threads from your threads, as it is limited in the number of threads it can spin up. |
||
|
|
|
|
EndInvoke is not optional because it is the place where exceptions are thrown if something went wrong in the asyncronous processing. Anyway there should not be any leak because if the IAsyncResult is holding some native resource it should correctly implement IDisposable and dispose such resources when the GC calls his finalizer. |
||
|
|
|
|
And EndInvoke call is not optional call, it is a part of the contract. If you call BeginInvoke you must call EndInvoke. Classic example of why this is necessary. It's very possible that the IAsyncResult returned from BeginInvoke has allocated resources attached to it. Most commonly a WaitHandle of sorts. Because IAsyncResult does not implement IDisposable another place must be chosen to free the resources. The only place to do so is EndInvoke. I briefly discuss this problem in the following blog post. http://blogs.msdn.com/jaredpar/archive/2008/01/07/isynchronizeinvoke-now.aspx |
||
|
|
|
Delegate.EndInvoke is documented as a though shalt call this (i.e. necessary - else leaks happen) - from msdn:
Control.EndInvoke is OK to ignore for fire-and-forget methods - from msdn:
However - if you are using |
||||
|
