You can view the properties of a thread in the current debugging session by right-clicking the thread name in the Threads window and choosing Properties. A thread has the following properties:
State | Description |
---|---|
Monitor | Thread is waiting on a Java monitor. |
Not Started | Thread has not yet been started. |
Running | Thread is runnable. |
Sleeping | Thread is sleeping. Thread.sleep() was called. |
Unknown | Thread status is unknown. |
Wait | Thread is waiting. Object.wait() was called. |
Zombie | Thread has completed execution. |
See Also | |
---|---|
Making a Thread Current
Suspending and Resuming a Thread Viewing the Source Code of a Thread Threads Window |