how to implement a message pump in Non-UI thread in .net?
- by Benny
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?