ThreadInfo[] |
ThreadMXBean.dumpAllThreads(boolean lockedMonitors,
boolean lockedSynchronizers) |
Returns an array of ThreadInfo objects holding information on all
threads that were alive when the call was invoked.
|
default ThreadInfo[] |
ThreadMXBean.dumpAllThreads(boolean lockedMonitors,
boolean lockedSynchronizers,
int maxDepth) |
Returns an array of ThreadInfo objects holding information on all
threads that were alive when the call was invoked.
|
static ThreadInfo |
ThreadInfo.from(CompositeData cd) |
Receives a CompositeData representing a ThreadInfo
object and attempts to return the root ThreadInfo
instance.
|
ThreadInfo |
ThreadMXBean.getThreadInfo(long id) |
Returns a ThreadInfo object for the thread with the specified
identifier.
|
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids) |
Returns an array of ThreadInfo objects ; one for each of the
threads specified in the input array of identifiers.
|
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids,
boolean lockedMonitors,
boolean lockedSynchronizers) |
Returns an array of ThreadInfo objects; one for each of the
threads specified in the ids argument.
|
default ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids,
boolean lockedMonitors,
boolean lockedSynchronizers,
int maxDepth) |
Returns an array of ThreadInfo objects; one for each of the
threads specified in the ids argument.
|
ThreadInfo[] |
ThreadMXBean.getThreadInfo(long[] ids,
int maxDepth) |
Returns an array of ThreadInfo objects ; one for each of the
threads specified in the ids argument.
|
ThreadInfo |
ThreadMXBean.getThreadInfo(long id,
int maxDepth) |
Returns a ThreadInfo object for the thread with the specified
identifier.
|