- java.lang.Object
- 
- jdk.jfr.consumer.RecordedObject
- 
- jdk.jfr.consumer.RecordedEvent
 
 
- 
 public final class RecordedEvent extends RecordedObject A recorded event.- Since:
- 9
 
- 
- 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description DurationgetDuration()Return the duration of the event, measured in nanoseconds.InstantgetEndTime()Returns the end time of the event.EventTypegetEventType()Returns the event type that describes the event.List<ValueDescriptor>getFields()Returns the list of descriptors describing the fields of the event.RecordedStackTracegetStackTrace()Return the stack trace that was created when the event was committed, ornullif the event lacks a stack trace.InstantgetStartTime()Returns start time of the event.RecordedThreadgetThread()Returns the thread from which the event was committed, ornullif the thread was not recorded.- 
Methods declared in class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 - 
Methods declared in class jdk.jfr.consumer.RecordedObjectgetBoolean, getByte, getChar, getClass, getDouble, getDuration, getFloat, getInstant, getInt, getLong, getShort, getString, getThread, getValue, hasField, toString
 
- 
 
- 
- 
- 
Method Detail- 
getStackTracepublic RecordedStackTrace getStackTrace() Return the stack trace that was created when the event was committed, ornullif the event lacks a stack trace.- Returns:
- stack trace, or nullif not available for event
 
 - 
getThreadpublic RecordedThread getThread() Returns the thread from which the event was committed, ornullif the thread was not recorded.- Returns:
- thread, or nullif not available for event
 
 - 
getEventTypepublic EventType getEventType() Returns the event type that describes the event.- Returns:
- the event type, not null
 
 - 
getStartTimepublic Instant getStartTime() Returns start time of the event.If the event is an instant event, start time and end time is the same. - Returns:
- the start time, not null
 
 - 
getEndTimepublic Instant getEndTime() Returns the end time of the event.If the event is an instant event, start time and end time is the same. - Returns:
- the end time, not null
 
 - 
getDurationpublic Duration getDuration() Return the duration of the event, measured in nanoseconds.- Returns:
- the duration in nanoseconds, not null
 
 - 
getFieldspublic List<ValueDescriptor> getFields() Returns the list of descriptors describing the fields of the event.- Overrides:
- getFieldsin class- RecordedObject
- Returns:
- descriptors, not null
 
 
- 
 
-