Class RecordedThread

java.lang.Object
jdk.jfr.consumer.RecordedObject
jdk.jfr.consumer.RecordedThread

public final class RecordedThread extends RecordedObject
A recorded thread.
Since:
9
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Returns a unique ID for both native threads and Java threads that can't be reused within the lifespan of the JVM.
    Returns the Java thread name, or null if doesn't exist.
    long
    Returns the Java thread ID, or -1 if it's not a Java thread.
    Returns the thread name used by the operating system.
    long
    Returns the thread ID used by the operating system.
    Returns the Java thread group, if available.
    boolean
    Returns true if this is a virtual Thread, false otherwise.

    Methods declared in class RecordedObject

    getBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
    Modifier and Type
    Method
    Description
    final boolean
    Returns the value of a field of type boolean.
    final byte
    Returns the value of a field of type byte.
    final char
    Returns the value of a field of type char.
    Returns the value of a field of type Class.
    final double
    Returns the value of a field of type double or of another primitive type that is convertible to type double by a widening conversion.
    final Duration
    Returns the value of a timespan field.
    Returns an immutable list of the fields for this object.
    final float
    Returns the value of a field of type float or of another primitive type convertible to type float by a widening conversion.
    final Instant
    Returns the value of a timestamp field.
    final int
    getInt(String name)
    Returns the value of a field of type int or of another primitive type that is convertible to type int by a widening conversion.
    final long
    Returns the value of a field of type long or of another primitive type that is convertible to type long by a widening conversion.
    final short
    Returns the value of a field of type short or of another primitive type convertible to type short by a widening conversion.
    final String
    Returns the value of a field of type String.
    Returns the value of a field of type Thread.
    final <T> T
    Returns the value of the field with the given name.
    boolean
    Returns true if a field with the given name exists, false otherwise.
    final String
    Returns a textual representation of this object.

    Methods declared in class Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    Modifier and Type
    Method
    Description
    protected Object
    Creates and returns a copy of this object.
    boolean
    Indicates whether some other object is "equal to" this one.
    protected void
    Deprecated, for removal: This API element is subject to removal in a future version.
    Finalization is deprecated and subject to removal in a future release.
    final Class<?>
    Returns the runtime class of this Object.
    int
    Returns a hash code value for this object.
    final void
    Wakes up a single thread that is waiting on this object's monitor.
    final void
    Wakes up all threads that are waiting on this object's monitor.
    final void
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted.
    final void
    wait(long timeoutMillis)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
    final void
    wait(long timeoutMillis, int nanos)
    Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
  • Method Details

    • getOSName

      public String getOSName()
      Returns the thread name used by the operating system.
      Returns:
      the OS thread name, or null if doesn't exist
    • getOSThreadId

      public long getOSThreadId()
      Returns the thread ID used by the operating system.
      Returns:
      the OS thread ID, or -1 if doesn't exist
    • getThreadGroup

      public RecordedThreadGroup getThreadGroup()
      Returns the Java thread group, if available.
      Returns:
      the thread group, or null if doesn't exist
    • getJavaName

      public String getJavaName()
      Returns the Java thread name, or null if doesn't exist.

      Returns java.lang.Thread.getName() if the thread has a Java representation. null otherwise.

      Returns:
      the Java thread name, or null if doesn't exist
    • getJavaThreadId

      public long getJavaThreadId()
      Returns the Java thread ID, or -1 if it's not a Java thread.
      Returns:
      the Java thread ID, or -1 if it's not a Java thread
      See Also:
    • getId

      public 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 by java.lang.Thread.threadId().

      See getOSThreadId() for the ID that is returned by the operating system.

      Returns:
      a unique ID for the thread
    • isVirtual

      public boolean isVirtual()
      Returns true if this is a virtual Thread, false otherwise.
      Returns:
      true if this is a virtual Thread, false otherwise
      Since:
      21