January 2011
Intermediate to advanced
1648 pages
70h 30m
English
So far, we’ve seen three states a thread can be in. You should be able to recite at least two of them. First of all, each new Thread instance represents a thread in a state where it hasn’t been started yet. Upon calling the Start method, the thread can enter the running state, where it’s executing code. A third state might not be immediately obvious because we haven’t talked about it much: A thread can be waiting for some operation to be completed, which is often referred to as being blocked.
True blocking of threads is quite uncommon in the world of managed code. Because of the deep support for COM interoperability, the managed runtime has to make sure that threads can continue to dispatch ...
Read now
Unlock full access