Home / Class/ RecordedEvent Class — netty Architecture

RecordedEvent Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  05df0ddb_3744_985e_c06c_8471d9b53527["RecordedEvent"]
  c673840b_4469_e6f2_9903_814e3b05cdf2["RecordedEvent.java"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|defined in| c673840b_4469_e6f2_9903_814e3b05cdf2
  5ff2f6a2_01f8_c9ba_555f_ec12fbef3a8a["RecordedEvent()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 5ff2f6a2_01f8_c9ba_555f_ec12fbef3a8a
  891850af_443f_f97d_45bf_f1fa3dda5da2["String()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 891850af_443f_f97d_45bf_f1fa3dda5da2
  6c83effe_0abb_f32a_c294_0c11d99e75c8["getBoolean()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 6c83effe_0abb_f32a_c294_0c11d99e75c8
  6814812f_b8ea_9b3d_35a9_dd531c7af521["getInt()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 6814812f_b8ea_9b3d_35a9_dd531c7af521
  6a1d310c_cda0_8a93_30f6_c1153c87658b["EventType()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 6a1d310c_cda0_8a93_30f6_c1153c87658b
  5a1ed240_fe1d_352a_a09f_6283535d6cfa["hasField()"]
  05df0ddb_3744_985e_c06c_8471d9b53527 -->|method| 5a1ed240_fe1d_352a_a09f_6283535d6cfa

Relationship Graph

Source Code

jfr-stub/src/main/java/jdk/jfr/consumer/RecordedEvent.java lines 20–44

public final class RecordedEvent {
    public RecordedEvent() {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

    public String getString(String fieldName) {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

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

    public int getInt(String fieldName) {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }

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

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free