Class RecordedThreadGroup
- java.lang.Object
-
- jdk.jfr.consumer.RecordedObject
-
- jdk.jfr.consumer.RecordedThreadGroup
public final class RecordedThreadGroup extends RecordedObject
A recorded Java thread group.
- Since:
- 9
Methods
| Modifier and Type | Method | Description |
|---|---|---|
String | getName() | Returns the name of the thread group, or |
RecordedThreadGroup | getParent() | Returns the parent thread group, or |
Methods declared in class jdk.jfr.consumer.RecordedObject
getBoolean, getByte, getChar, getClass, getDouble, getDuration, getFields, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait Methods
getName
public String getName()
Returns the name of the thread group, or null if doesn't exist.
- Returns:
- the thread group name, or
nullif doesn't exist
getParent
public RecordedThreadGroup getParent()
Returns the parent thread group, or null if it doesn't exist.
- Returns:
- parent thread group, or
nullif it doesn't exist.
© 1993, 2020, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/11/docs/api/jdk.jfr/jdk/jfr/consumer/RecordedThreadGroup.html