Home / Function/ headersDependencyNotCreatedShouldCreateAndSucceed() — netty Function Reference

headersDependencyNotCreatedShouldCreateAndSucceed() — netty Function Reference

Architecture documentation for the headersDependencyNotCreatedShouldCreateAndSucceed() function in DefaultHttp2ConnectionDecoderTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  4039c078_5f17_d2b8_1979_8c780263d646["headersDependencyNotCreatedShouldCreateAndSucceed()"]
  7c0b580c_3a1b_cdb3_bf02_2ffea3bbdffc["DefaultHttp2ConnectionDecoderTest"]
  4039c078_5f17_d2b8_1979_8c780263d646 -->|defined in| 7c0b580c_3a1b_cdb3_bf02_2ffea3bbdffc
  style 4039c078_5f17_d2b8_1979_8c780263d646 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoderTest.java lines 680–689

    @Test
    public void headersDependencyNotCreatedShouldCreateAndSucceed() throws Exception {
        final short weight = 1;
        decode().onHeadersRead(ctx, STREAM_ID, EmptyHttp2Headers.INSTANCE, STREAM_DEPENDENCY_ID,
                weight, true, 0, true);
        verify(listener).onHeadersRead(eq(ctx), eq(STREAM_ID), eq(EmptyHttp2Headers.INSTANCE), eq(STREAM_DEPENDENCY_ID),
                eq(weight), eq(true), eq(0), eq(true));
        verify(remoteFlow).updateDependencyTree(eq(STREAM_ID), eq(STREAM_DEPENDENCY_ID), eq(weight), eq(true));
        verify(lifecycleManager).closeStreamRemote(eq(stream), any(ChannelFuture.class));
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free