RecordingStream Class — netty Architecture
Architecture documentation for the RecordingStream class in RecordingStream.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 28756c1b_6c5f_0a41_2eb4_7ba6658743b7["RecordingStream"] c5528f6a_bfd9_8bf8_57bb_bb76c6d2896e["RecordingStream.java"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|defined in| c5528f6a_bfd9_8bf8_57bb_bb76c6d2896e 2856a52c_d93d_26bd_e1b7_01da5418bd7e["RecordingStream()"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|method| 2856a52c_d93d_26bd_e1b7_01da5418bd7e 99506b81_0e24_1518_6ec7_2bc8ad793747["startAsync()"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|method| 99506b81_0e24_1518_6ec7_2bc8ad793747 5ab0979c_88c8_323d_42f8_d8b7e159d208["close()"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|method| 5ab0979c_88c8_323d_42f8_d8b7e159d208 0de2da93_821b_8109_562e_f71fada5d408["EventSettings()"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|method| 0de2da93_821b_8109_562e_f71fada5d408 132b2ab3_a97d_f659_3eee_a2335d9bcb28["onEvent()"] 28756c1b_6c5f_0a41_2eb4_7ba6658743b7 -->|method| 132b2ab3_a97d_f659_3eee_a2335d9bcb28
Relationship Graph
Source Code
jfr-stub/src/main/java/jdk/jfr/consumer/RecordingStream.java lines 23–53
@SuppressWarnings("Since15")
public class RecordingStream implements AutoCloseable {
public RecordingStream() {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
public void startAsync() {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
@Override
public void close() {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
public EventSettings enable(String s) {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
public EventSettings enable(Class<? extends Event> c) {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
public EventSettings disable(String s) {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
public void onEvent(String name, Consumer<RecordedEvent> consumer) {
throw new UnsupportedOperationException("Stub should only be used at compile time");
}
}
Source
Frequently Asked Questions
What is the RecordingStream class?
RecordingStream is a class in the netty codebase, defined in jfr-stub/src/main/java/jdk/jfr/consumer/RecordingStream.java.
Where is RecordingStream defined?
RecordingStream is defined in jfr-stub/src/main/java/jdk/jfr/consumer/RecordingStream.java at line 23.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free