Home / Function/ failedWhenConnectionWindowUpdateFrameWithZeroDelta() — netty Function Reference

failedWhenConnectionWindowUpdateFrameWithZeroDelta() — netty Function Reference

Architecture documentation for the failedWhenConnectionWindowUpdateFrameWithZeroDelta() function in DefaultHttp2FrameReaderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  7e80fb23_53b7_ac7f_af72_b93498f6da5c["failedWhenConnectionWindowUpdateFrameWithZeroDelta()"]
  66b2f0cc_bce5_f8e1_a7ee_93cd2a101951["DefaultHttp2FrameReaderTest"]
  7e80fb23_53b7_ac7f_af72_b93498f6da5c -->|defined in| 66b2f0cc_bce5_f8e1_a7ee_93cd2a101951
  style 7e80fb23_53b7_ac7f_af72_b93498f6da5c fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java lines 317–333

    @Test
    public void failedWhenConnectionWindowUpdateFrameWithZeroDelta() throws Http2Exception {
        final ByteBuf input = Unpooled.buffer();
        try {
            writeFrameHeader(input, 4, WINDOW_UPDATE, new Http2Flags(), 0);
            input.writeInt(0);
            Http2Exception ex = assertThrows(Http2Exception.class, new Executable() {
                @Override
                public void execute() throws Throwable {
                    frameReader.readFrame(ctx, input, listener);
                }
            });
            assertFalse(ex instanceof Http2Exception.StreamException);
        } finally {
            input.release();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does failedWhenConnectionWindowUpdateFrameWithZeroDelta() do?
failedWhenConnectionWindowUpdateFrameWithZeroDelta() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java.
Where is failedWhenConnectionWindowUpdateFrameWithZeroDelta() defined?
failedWhenConnectionWindowUpdateFrameWithZeroDelta() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2FrameReaderTest.java at line 317.

Analyze Your Own Codebase

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

Try Supermodel Free