Home / Function/ propagateSettings() — netty Function Reference

propagateSettings() — netty Function Reference

Architecture documentation for the propagateSettings() function in InboundHttp2ToHttpAdapterTest.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  dad28096_4e9e_b1f1_831e_58a72b999ac1["propagateSettings()"]
  b5bf07b2_a16a_fa49_d2b2_c4bdea19488b["InboundHttp2ToHttpAdapterTest"]
  dad28096_4e9e_b1f1_831e_58a72b999ac1 -->|defined in| b5bf07b2_a16a_fa49_d2b2_c4bdea19488b
  ab34dca1_da01_a824_4707_d9e1e8e727ee["boostrapEnv()"]
  ab34dca1_da01_a824_4707_d9e1e8e727ee -->|calls| dad28096_4e9e_b1f1_831e_58a72b999ac1
  ab34dca1_da01_a824_4707_d9e1e8e727ee["boostrapEnv()"]
  dad28096_4e9e_b1f1_831e_58a72b999ac1 -->|calls| ab34dca1_da01_a824_4707_d9e1e8e727ee
  style dad28096_4e9e_b1f1_831e_58a72b999ac1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/test/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapterTest.java lines 633–648

    @Test
    public void propagateSettings() throws Exception {
        boostrapEnv(1, 1, 2);
        final Http2Settings settings = new Http2Settings().pushEnabled(true);
        runInChannel(clientChannel, new Http2Runnable() {
            @Override
            public void run() {
                clientHandler.encoder().writeSettings(ctxClient(), settings, newPromiseClient());
                clientChannel.flush();
            }
        });
        assertTrue(settingsLatch.await(5, SECONDS));
        ArgumentCaptor<Http2Settings> settingsCaptor = ArgumentCaptor.forClass(Http2Settings.class);
        verify(settingsListener, times(2)).messageReceived(settingsCaptor.capture());
        assertEquals(settings, settingsCaptor.getValue());
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does propagateSettings() do?
propagateSettings() is a function in the netty codebase, defined in codec-http2/src/test/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapterTest.java.
Where is propagateSettings() defined?
propagateSettings() is defined in codec-http2/src/test/java/io/netty/handler/codec/http2/InboundHttp2ToHttpAdapterTest.java at line 633.
What does propagateSettings() call?
propagateSettings() calls 1 function(s): boostrapEnv.
What calls propagateSettings()?
propagateSettings() is called by 1 function(s): boostrapEnv.

Analyze Your Own Codebase

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

Try Supermodel Free