Home / Function/ onWindowUpdateRead() — netty Function Reference

onWindowUpdateRead() — netty Function Reference

Architecture documentation for the onWindowUpdateRead() function in Http2FrameCodec.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5f74091e_359e_7103_341e_603dcf1148b6["onWindowUpdateRead()"]
  c7728670_9ef4_3d0d_475d_7c991c96be4c["FrameListener"]
  5f74091e_359e_7103_341e_603dcf1148b6 -->|defined in| c7728670_9ef4_3d0d_475d_7c991c96be4c
  c3697987_0f51_1bd9_b480_661a55bd7f7a["onHttp2Frame()"]
  5f74091e_359e_7103_341e_603dcf1148b6 -->|calls| c3697987_0f51_1bd9_b480_661a55bd7f7a
  style 5f74091e_359e_7103_341e_603dcf1148b6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java lines 624–632

        @Override
        public void onWindowUpdateRead(ChannelHandlerContext ctx, int streamId, int windowSizeIncrement) {
            if (streamId == 0) {
                // Ignore connection window updates.
                return;
            }
            Http2FrameStream stream = requireStream(streamId);
            onHttp2Frame(ctx, new DefaultHttp2WindowUpdateFrame(windowSizeIncrement).stream(stream));
        }

Domain

Subdomains

Frequently Asked Questions

What does onWindowUpdateRead() do?
onWindowUpdateRead() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java.
Where is onWindowUpdateRead() defined?
onWindowUpdateRead() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/Http2FrameCodec.java at line 624.
What does onWindowUpdateRead() call?
onWindowUpdateRead() calls 1 function(s): onHttp2Frame.

Analyze Your Own Codebase

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

Try Supermodel Free