how to implement a message pump in Non-UI thread in .net?

Posted by Benny on Stack Overflow See other posts from Stack Overflow or by Benny
Published on 2010-04-10T15:50:58Z Indexed on 2010/04/10 15:53 UTC
Read the original article Hit count: 169

Filed under:
|

how to implement a message pump in non-ui thread?

what i want is that the message can be an object or a command, say an Action/Func, etc. do i have to use separate queue for different type of message? say one queue for object, one queue for Action/Function?

Given that the type of messages vary, how to implement it?

© Stack Overflow or respective owner

Related posts about multithreading

Related posts about message