onTooBigFrame() — netty Function Reference
Architecture documentation for the onTooBigFrame() function in SerialMarshallingDecoderTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fc6317c5_602b_d8cc_4453_4a7d6cfb78e3["onTooBigFrame()"] 4d11b19e_0982_061c_77d5_100ef2d3c203["SerialMarshallingDecoderTest"] fc6317c5_602b_d8cc_4453_4a7d6cfb78e3 -->|defined in| 4d11b19e_0982_061c_77d5_100ef2d3c203 style fc6317c5_602b_d8cc_4453_4a7d6cfb78e3 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-marshalling/src/test/java/io/netty/handler/codec/marshalling/SerialMarshallingDecoderTest.java lines 43–51
@Override
protected void onTooBigFrame(EmbeddedChannel ch, ByteBuf input) {
try {
ch.writeInbound(input);
fail();
} catch (CodecException e) {
assertEquals(TooLongFrameException.class, e.getClass());
}
}
Domain
Subdomains
Defined In
Source
Frequently Asked Questions
What does onTooBigFrame() do?
onTooBigFrame() is a function in the netty codebase, defined in codec-marshalling/src/test/java/io/netty/handler/codec/marshalling/SerialMarshallingDecoderTest.java.
Where is onTooBigFrame() defined?
onTooBigFrame() is defined in codec-marshalling/src/test/java/io/netty/handler/codec/marshalling/SerialMarshallingDecoderTest.java at line 43.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free