Home / Function/ onSettingsAckRead() — netty Function Reference

onSettingsAckRead() — netty Function Reference

Architecture documentation for the onSettingsAckRead() function in DefaultHttp2ConnectionDecoder.java from the netty codebase.

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  e5e8d893_d71c_3912_5f16_c4fe70a744aa["onSettingsAckRead()"]
  0189a990_8f54_63f5_92fb_f168c031db1e["FrameReadListener"]
  e5e8d893_d71c_3912_5f16_c4fe70a744aa -->|defined in| 0189a990_8f54_63f5_92fb_f168c031db1e
  da068e1d_3f2d_7c09_5aa9_f839e3ed555a["onSettingsAckRead()"]
  da068e1d_3f2d_7c09_5aa9_f839e3ed555a -->|calls| e5e8d893_d71c_3912_5f16_c4fe70a744aa
  da068e1d_3f2d_7c09_5aa9_f839e3ed555a["onSettingsAckRead()"]
  e5e8d893_d71c_3912_5f16_c4fe70a744aa -->|calls| da068e1d_3f2d_7c09_5aa9_f839e3ed555a
  d255073a_061c_c1a7_3e47_5eba139b16a0["applyLocalSettings()"]
  e5e8d893_d71c_3912_5f16_c4fe70a744aa -->|calls| d255073a_061c_c1a7_3e47_5eba139b16a0
  style e5e8d893_d71c_3912_5f16_c4fe70a744aa fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java lines 461–471

        @Override
        public void onSettingsAckRead(ChannelHandlerContext ctx) throws Http2Exception {
            // Apply oldest outstanding local settings here. This is a synchronization point between endpoints.
            Http2Settings settings = encoder.pollSentSettings();

            if (settings != null) {
                applyLocalSettings(settings);
            }

            listener.onSettingsAckRead(ctx);
        }

Domain

Subdomains

Frequently Asked Questions

What does onSettingsAckRead() do?
onSettingsAckRead() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java.
Where is onSettingsAckRead() defined?
onSettingsAckRead() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/DefaultHttp2ConnectionDecoder.java at line 461.
What does onSettingsAckRead() call?
onSettingsAckRead() calls 2 function(s): applyLocalSettings, onSettingsAckRead.
What calls onSettingsAckRead()?
onSettingsAckRead() is called by 1 function(s): onSettingsAckRead.

Analyze Your Own Codebase

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

Try Supermodel Free