Package org.openjdk.jmc.common
Interface IMCThread
-
public interface IMCThread
Class for representing a thread in Mission Control.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IMCThreadGroup
getThreadGroup()
Returns the thread group this thread belongs to.Long
getThreadId()
Returns the java thread id.String
getThreadName()
Returns the java thread name.
-
-
-
Method Detail
-
getThreadId
Long getThreadId()
Returns the java thread id.- Returns:
- the java thread id, or
null
if not available
-
getThreadName
String getThreadName()
Returns the java thread name.- Returns:
- the java thread name, or
null
if not available
-
getThreadGroup
IMCThreadGroup getThreadGroup()
Returns the thread group this thread belongs to.- Returns:
- the thread group this thread belongs to, or
null
if it does not belong to a thread group or if the information is not available.
-
-