- java.lang.Object
- 
- jdk.jfr.consumer.RecordedObject
- 
- jdk.jfr.consumer.RecordedThread
 
 
- 
 public final class RecordedThread extends RecordedObject A recorded thread.- Since:
- 9
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetId()Returns a unique ID for both native threads and Java threads that can't be reused within the lifespan of the JVM.StringgetJavaName()Returns the Java thread name, ornullif if doesn't exist.longgetJavaThreadId()Returns the Java thread ID, or-1if it's not a Java thread.StringgetOSName()Returns the thread name used by the operating system.longgetOSThreadId()Returns the thread ID used by the operating system.RecordedThreadGroupgetThreadGroup()Returns the Java thread group, if available.- 
Methods declared in class jdk.jfr.consumer.RecordedObjectgetBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
 
- 
 
- 
- 
- 
Method Detail- 
getOSNamepublic String getOSName() Returns the thread name used by the operating system.- Returns:
- the OS thread name, or nullif doesn't exist
 
 - 
getOSThreadIdpublic long getOSThreadId() Returns the thread ID used by the operating system.- Returns:
- The Java thread ID, or -1if doesn't exist
 
 - 
getThreadGrouppublic RecordedThreadGroup getThreadGroup() Returns the Java thread group, if available.- Returns:
- the thread group, or nullif doesn't exist
 
 - 
getJavaNamepublic String getJavaName() Returns the Java thread name, ornullif if doesn't exist.Returns java.lang.Thread.getName()if the thread has a Java representation.nullotherwise.- Returns:
- the Java thread name, or nullif doesn't exist
 
 - 
getJavaThreadIdpublic long getJavaThreadId() Returns the Java thread ID, or-1if it's not a Java thread.- Returns:
- the Java thread ID, or -1if it's not a Java thread
 
 - 
getIdpublic long getId() Returns a unique ID for both native threads and Java threads that can't be reused within the lifespan of the JVM.See getJavaThreadId()for the ID that is returned byjava.lang.Thread.getId()- Returns:
- a unique ID for the thread
 
 
- 
 
-