Home / Function/ StreamState() — netty Function Reference

StreamState() — netty Function Reference

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

Function java Buffer Allocators calls 1 called by 1

Entity Profile

Dependency Diagram

graph TD
  1115b459_503e_d9f7_1645_aefceb20efeb["StreamState()"]
  589a9899_b8db_cc45_ce79_726a13b35861["StreamState"]
  1115b459_503e_d9f7_1645_aefceb20efeb -->|defined in| 589a9899_b8db_cc45_ce79_726a13b35861
  1e0c440c_4db6_c649_af40_45384c42fcc7["acceptStream()"]
  1e0c440c_4db6_c649_af40_45384c42fcc7 -->|calls| 1115b459_503e_d9f7_1645_aefceb20efeb
  787e8fc7_0d56_7863_92c2_4b57291a602f["StreamState()"]
  1115b459_503e_d9f7_1645_aefceb20efeb -->|calls| 787e8fc7_0d56_7863_92c2_4b57291a602f
  style 1115b459_503e_d9f7_1645_aefceb20efeb fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySession.java lines 244–252

        StreamState(
                byte priority, boolean remoteSideClosed, boolean localSideClosed,
                int sendWindowSize, int receiveWindowSize) {
            this.priority = priority;
            this.remoteSideClosed = remoteSideClosed;
            this.localSideClosed = localSideClosed;
            this.sendWindowSize = new AtomicInteger(sendWindowSize);
            this.receiveWindowSize = new AtomicInteger(receiveWindowSize);
        }

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free