public final class RecordedEvent extends RecordedObject
Modifier and Type | Method | Description |
---|---|---|
Duration |
getDuration() |
Returns the duration of the event, measured in nanoseconds. |
Instant |
getEndTime() |
Returns the end time of the event. |
EventType |
getEventType() |
Returns the event type that describes the event. |
List |
getFields() |
Returns the list of descriptors that describes the fields of the event. |
RecordedStackTrace |
getStackTrace() |
Returns the stack trace that was created when the event was committed, or null if the event lacks a stack trace. |
Instant |
getStartTime() |
Returns the start time of the event. |
RecordedThread |
getThread() |
Returns the thread from which the event was committed, or null if the thread was not recorded. |
getBoolean, getByte, getChar, getClass, getDouble, getDuration, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
public RecordedStackTrace getStackTrace()
null
if the event lacks a stack trace.null
if doesn't exist for the eventpublic RecordedThread getThread()
null
if the thread was not recorded.null
if doesn't exist for the eventpublic EventType getEventType()
null
public Instant getStartTime()
If the event is an instant event, then the start time and end time are the same.
null
public Instant getEndTime()
If the event is an instant event, then the start time and end time are the same.
null
public Duration getDuration()
null
public List<ValueDescriptor> getFields()
getFields
in class RecordedObject
null
© 1993, 2023, 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/21/docs/api/jdk.jfr/jdk/jfr/consumer/RecordedEvent.html