Home / Class/ RecordingFile Class — netty Architecture

RecordingFile Class — netty Architecture

Architecture documentation for the RecordingFile class in RecordingFile.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  82cb85b7_4eb7_fa99_4209_54376be0d4a5["RecordingFile"]
  95ad2243_e284_f218_b587_cc168db11f6c["RecordingFile.java"]
  82cb85b7_4eb7_fa99_4209_54376be0d4a5 -->|defined in| 95ad2243_e284_f218_b587_cc168db11f6c
  0806d884_3212_9a68_542e_bbb7982b497a["RecordingFile()"]
  82cb85b7_4eb7_fa99_4209_54376be0d4a5 -->|method| 0806d884_3212_9a68_542e_bbb7982b497a
  008c3fe4_2d88_9bea_8286_2efbd6e67212["hasMoreEvents()"]
  82cb85b7_4eb7_fa99_4209_54376be0d4a5 -->|method| 008c3fe4_2d88_9bea_8286_2efbd6e67212
  8828ec8a_f453_c236_3cda_51c3b6bb46fc["RecordedEvent()"]
  82cb85b7_4eb7_fa99_4209_54376be0d4a5 -->|method| 8828ec8a_f453_c236_3cda_51c3b6bb46fc
  c59b3780_6c6a_1829_2761_001429c156be["close()"]
  82cb85b7_4eb7_fa99_4209_54376be0d4a5 -->|method| c59b3780_6c6a_1829_2761_001429c156be

Relationship Graph

Source Code

jfr-stub/src/main/java/jdk/jfr/consumer/RecordingFile.java lines 21–38

public final class RecordingFile implements AutoCloseable {
    public RecordingFile(Path ignore) throws IOException {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

    public boolean hasMoreEvents() {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

    public RecordedEvent readEvent() throws IOException {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

    @Override
    public void close() throws IOException {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }
}

Frequently Asked Questions

What is the RecordingFile class?
RecordingFile is a class in the netty codebase, defined in jfr-stub/src/main/java/jdk/jfr/consumer/RecordingFile.java.
Where is RecordingFile defined?
RecordingFile is defined in jfr-stub/src/main/java/jdk/jfr/consumer/RecordingFile.java at line 21.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free