Home / Function/ updateSendWindowSize() — netty Function Reference

updateSendWindowSize() — netty Function Reference

Architecture documentation for the updateSendWindowSize() function in SpdySession.java from the netty codebase.

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  17700578_71db_8e7b_29c4_5cf2358e1923["updateSendWindowSize()"]
  d4117dfa_49b0_1937_8865_6887ed2ababf["SpdySession"]
  17700578_71db_8e7b_29c4_5cf2358e1923 -->|defined in| d4117dfa_49b0_1937_8865_6887ed2ababf
  5741002c_9c87_22ac_cf3c_b32d8592aff0["updateSendWindowSize()"]
  5741002c_9c87_22ac_cf3c_b32d8592aff0 -->|calls| 17700578_71db_8e7b_29c4_5cf2358e1923
  5741002c_9c87_22ac_cf3c_b32d8592aff0["updateSendWindowSize()"]
  17700578_71db_8e7b_29c4_5cf2358e1923 -->|calls| 5741002c_9c87_22ac_cf3c_b32d8592aff0
  style 17700578_71db_8e7b_29c4_5cf2358e1923 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySession.java lines 157–164

    int updateSendWindowSize(int streamId, int deltaWindowSize) {
        if (streamId == SPDY_SESSION_STREAM_ID) {
            return sendWindowSize.addAndGet(deltaWindowSize);
        }

        StreamState state = activeStreams.get(streamId);
        return state != null ? state.updateSendWindowSize(deltaWindowSize) : -1;
    }

Domain

Subdomains

Frequently Asked Questions

What does updateSendWindowSize() do?
updateSendWindowSize() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySession.java.
Where is updateSendWindowSize() defined?
updateSendWindowSize() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySession.java at line 157.
What does updateSendWindowSize() call?
updateSendWindowSize() calls 1 function(s): updateSendWindowSize.
What calls updateSendWindowSize()?
updateSendWindowSize() is called by 1 function(s): updateSendWindowSize.

Analyze Your Own Codebase

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

Try Supermodel Free