Home / Function/ closeRemoteSide() — netty Function Reference

closeRemoteSide() — netty Function Reference

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

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  c02b0e1f_b6a2_5954_6806_a027ee40ea9e["closeRemoteSide()"]
  d4117dfa_49b0_1937_8865_6887ed2ababf["SpdySession"]
  c02b0e1f_b6a2_5954_6806_a027ee40ea9e -->|defined in| d4117dfa_49b0_1937_8865_6887ed2ababf
  2fce917c_fc90_0cc3_5cda_c64a51085187["closeRemoteSide()"]
  2fce917c_fc90_0cc3_5cda_c64a51085187 -->|calls| c02b0e1f_b6a2_5954_6806_a027ee40ea9e
  2fce917c_fc90_0cc3_5cda_c64a51085187["closeRemoteSide()"]
  c02b0e1f_b6a2_5954_6806_a027ee40ea9e -->|calls| 2fce917c_fc90_0cc3_5cda_c64a51085187
  ca79eaac_a013_7969_4bbe_206889d1bba8["isLocalSideClosed()"]
  c02b0e1f_b6a2_5954_6806_a027ee40ea9e -->|calls| ca79eaac_a013_7969_4bbe_206889d1bba8
  style c02b0e1f_b6a2_5954_6806_a027ee40ea9e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/SpdySession.java lines 107–115

    void closeRemoteSide(int streamId, boolean remote) {
        StreamState state = activeStreams.get(streamId);
        if (state != null) {
            state.closeRemoteSide();
            if (state.isLocalSideClosed()) {
                removeActiveStream(streamId, remote);
            }
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free