C
Coder
So there are various ways to enter a thread. Example:
- Button click
- Event from delegate call back.
- etc...
In fact, I suppose all entry points are from some form of an event.
Questions:
- When I click a button, does it it get blocked till the last button
click is done? If so why?
- What about other events that I could get such as from MSMQ letting me
know a message has arrived? Or what about if I set up a call back
delegate for a web service to call me back on?
- Do these events call into my thread even if my thread is busy? If
not, how can I get them to call into my thread if my thread is busy?
Thanks!
Coder
- Button click
- Event from delegate call back.
- etc...
In fact, I suppose all entry points are from some form of an event.
Questions:
- When I click a button, does it it get blocked till the last button
click is done? If so why?
- What about other events that I could get such as from MSMQ letting me
know a message has arrived? Or what about if I set up a call back
delegate for a web service to call me back on?
- Do these events call into my thread even if my thread is busy? If
not, how can I get them to call into my thread if my thread is busy?
Thanks!
Coder
