Spec-Zone .ru
спецификации, руководства, описания, API
|
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Package | Description |
---|---|
java.lang.management | Provides the management interface for monitoring and management of the Java virtual machine as well as the operating system on which the Java virtual machine is running. |
Uses of ThreadInfo in java.lang.management |
---|
Modifier and Type | Method and Description |
---|---|
ThreadInfo[] |
ThreadMXBean.dumpAllThreads(boolean lockedMonitors,
boolean lockedSynchronizers)
Returns the thread info for all live threads with stack trace and synchronization information. |
static ThreadInfo |
ThreadInfo.from(CompositeData cd)
Returns a ThreadInfo object represented by the given CompositeData. |
ThreadInfo |
ThreadMXBean.getThreadInfo(long id)
Returns the thread info for a thread of the specified id with no stack trace. |
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids)
Returns the thread info for each thread whose ID is in the input array ids with no stack trace. |
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids,
boolean lockedMonitors,
boolean lockedSynchronizers)
Returns the thread info for each thread whose ID is in the input array ids, with stack trace and synchronization information. |
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids,
int maxDepth)
Returns the thread info for each thread whose ID is in the input array ids, with stack trace of a specified number of stack trace elements. |
ThreadInfo |
ThreadMXBean.getThreadInfo(long id,
int maxDepth)
Returns a thread info for a thread of the specified id, with stack trace of a specified number of stack trace elements. |
|
Java™ Platform Standard Ed. 7 DRAFT ea-b118 |
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Copyright © 1993, 2010, Oracle Corporation. All rights reserved.