Home / Function/ onTooBigFrame() — netty Function Reference

onTooBigFrame() — netty Function Reference

Architecture documentation for the onTooBigFrame() function in RiverMarshallingDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  0e19c317_5bac_9160_8f0b_c117eb829dc2["onTooBigFrame()"]
  ce5e47c9_f6af_3690_978a_1c07227d5669["RiverMarshallingDecoderTest"]
  0e19c317_5bac_9160_8f0b_c117eb829dc2 -->|defined in| ce5e47c9_f6af_3690_978a_1c07227d5669
  style 0e19c317_5bac_9160_8f0b_c117eb829dc2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-marshalling/src/test/java/io/netty/handler/codec/marshalling/RiverMarshallingDecoderTest.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

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/RiverMarshallingDecoderTest.java.
Where is onTooBigFrame() defined?
onTooBigFrame() is defined in codec-marshalling/src/test/java/io/netty/handler/codec/marshalling/RiverMarshallingDecoderTest.java at line 43.

Analyze Your Own Codebase

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

Try Supermodel Free