Performance implications of BeginInvoke
Posted
by AngryHacker
on Stack Overflow
See other posts from Stack Overflow
or by AngryHacker
Published on 2010-03-18T20:56:15Z
Indexed on
2010/03/18
21:01 UTC
Read the original article
Hit count: 414
I've inherited code where BeginInvoke is called from the main thread (not a background thread, which is usually the pattern). I am trying to understand what it actually does in this scenario.
Does the method being called in the BeginInvoke get in line of messages that come down to the window? The docs say asynchronously
, so that is my assumption.
How does the framework prioritize when to kick off the method called by BeginInvoke?
© Stack Overflow or respective owner