If I create and start a thread, how does calling Thread.Sleep(x) within that thread affect the ThreadState (if at all)?
Thanks!
|
|
If I create and start a thread, how does calling Thread.Sleep(x) within that thread affect the ThreadState (if at all)? Thanks!
|
||
|
|
|
|
ThreadState: WaitSleepJoin: The thread is blocked as a result of a call to Wait, Sleep, or Join. From here. |
||||||
|
|
|
The thread should be put into ThreadState.WaitSleepJoin. For details, see ThreadState's Documentation, specifically: WaitSleepJoin: "The thread is blocked. This could be the result of calling Thread..::.Sleep or Thread..::.Join, of requesting a lock — for example, by calling Monitor..::.Enter or Monitor..::.Wait — or of waiting on a thread synchronization object such as ManualResetEvent. " |
||
|
|
|
|
I don't want this to come over as a sarcastic answer, as that won't help anyone - so please take this in the spirit that it was intended. Have you tried creating a simple winform app with buttons to start, stop and sleep a thread and a status area to show the value of thread.ThreadState? This will answer your question. If you're going to down vote this at least explain why. All I'm trying to suggest is that people do a bit of experimentation before posting questions. If their experiments don't answer their questions, they can ask here with evidence as to what they've already tried. |
|||
|
|
|
|
It transitions to |
||
|
|
|
|
From MSDN
Short answer is: Yes! |
||
|