Home / Class/ Event Class — netty Architecture

Event Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  ea102988_fb2b_5b16_baf0_8b587769b0f7["Event"]
  fd9b562e_3d7e_0d75_f7ed_0d6704691f52["Event.java"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|defined in| fd9b562e_3d7e_0d75_f7ed_0d6704691f52
  5f4623f9_4ba9_fd7e_15b0_0c95bba3b18e["Event()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 5f4623f9_4ba9_fd7e_15b0_0c95bba3b18e
  66ec8592_1ed5_cf79_a742_9211ef699843["begin()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 66ec8592_1ed5_cf79_a742_9211ef699843
  4ace2e9e_1aa6_52a1_a4c4_995dd8616917["end()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 4ace2e9e_1aa6_52a1_a4c4_995dd8616917
  28894d95_b386_8446_a124_fff90e04ed25["commit()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 28894d95_b386_8446_a124_fff90e04ed25
  934e50ae_f0c2_8642_afa5_645246c3d0c6["isEnabled()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 934e50ae_f0c2_8642_afa5_645246c3d0c6
  4bfd3dd4_40f9_c9f7_103b_454df448a44f["shouldCommit()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 4bfd3dd4_40f9_c9f7_103b_454df448a44f
  6cc8525d_0894_4103_10e0_88f34a3708ad["set()"]
  ea102988_fb2b_5b16_baf0_8b587769b0f7 -->|method| 6cc8525d_0894_4103_10e0_88f34a3708ad

Relationship Graph

Source Code

jfr-stub/src/main/java/jdk/jfr/Event.java lines 18–46

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

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

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

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

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

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

    public final void set(int index, Object value) {
        throw new UnsupportedOperationException("Stub should only be used at compile time");
    }
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free