ThreadInfo
Class ThreadInfo
- java.lang.Object
-
- java.lang.management.ThreadInfo
public class ThreadInfo extends Object
Thread information. ThreadInfo
contains the information about a thread including:
General thread information
- Thread ID.
- Name of the thread.
Execution information
- Thread state.
- The object upon which the thread is blocked due to:
- waiting to enter a synchronization block/method, or
- waiting to be notified in a
Object.wait
method, or - parking due to a
LockSupport.park
call.