Class RecordingFile
- java.lang.Object
-
- jdk.jfr.consumer.RecordingFile
- All Implemented Interfaces:
-
Closeable,AutoCloseable
public final class RecordingFile extends Object implements Closeable
A recording file.
The following example shows how read and print all events in a recording file.
try (RecordingFile recordingFile = new RecordingFile(Paths.get("recording.jfr"))) {
while (recordingFile.hasMoreEvents()) {
RecordedEvent event = recordingFile.readEvent();
System.out.println(event);
}
}
- Since:
- 9
Constructors
| Constructor | Description |
|---|---|
RecordingFile(Path file) | Creates a recording file. |
Methods
| Modifier and Type | Method | Description |
|---|---|---|
void | close() | Closes this recording file and releases any system resources that are associated with it. |
boolean | hasMoreEvents() | Returns |
static List<RecordedEvent> | readAllEvents(Path path) | Returns a list of all events in a file. |
RecordedEvent | readEvent() | Reads the next event in the recording. |
List<EventType> | readEventTypes() | Returns a list of all event types in this recording. |
Methods declared in class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait Constructors
RecordingFile
public RecordingFile(Path file)
throws IOException Creates a recording file.
- Parameters:
-
file- the path of the file to open, notnull - Throws:
-
IOException- if it's not a valid recording file, or an I/O error occurred -
NoSuchFileException- if thefilecan't be located -
SecurityException- if a security manager exists and itscheckReadmethod denies read access to the file.
Methods
readEvent
public RecordedEvent readEvent()
throws IOException Reads the next event in the recording.
- Returns:
- the next event, not
null - Throws:
-
EOFException- if no more events exist in the recording file -
IOException- if an I/O error occurs. - See Also:
hasMoreEvents()
hasMoreEvents
public boolean hasMoreEvents()
Returns true if unread events exist in the recording file, false otherwise.
- Returns:
-
trueif unread events exist in the recording,falseotherwise.
readEventTypes
public List<EventType> readEventTypes()
throws IOException Returns a list of all event types in this recording.
- Returns:
- a list of event types, not
null - Throws:
-
IOException- if an I/O error occurred while reading from the file - See Also:
hasMoreEvents()
close
public void close()
throws IOException Closes this recording file and releases any system resources that are associated with it.
- Specified by:
-
closein interfaceAutoCloseable - Specified by:
-
closein interfaceCloseable - Throws:
-
IOException- if an I/O error occurred
readAllEvents
public static List<RecordedEvent> readAllEvents(Path path)
throws IOException Returns a list of all events in a file.
This method is intended for simple cases where it's convenient to read all events in a single operation. It isn't intended for reading large files.
- Parameters:
-
path- the path to the file, notnull - Returns:
- the events from the file as a
Listobject; whether theListis modifiable or not is implementation dependent and therefore not specified, notnull - Throws:
-
IOException- if an I/O error occurred, it's not a Flight Recorder file or a version of a JFR file that can't be parsed -
SecurityException- if a security manager exists and itscheckReadmethod denies read access to the file.
© 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/RecordingFile.html