Home / Function/ String() — netty Function Reference

String() — netty Function Reference

Architecture documentation for the String() function in DefaultSpdySynStreamFrame.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6["String()"]
  b3cdf559_e73e_ed2d_ab74_871526f92ccd["DefaultSpdySynStreamFrame"]
  5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6 -->|defined in| b3cdf559_e73e_ed2d_ab74_871526f92ccd
  88e376e2_7bda_0068_efe3_e98c40394f6b["isUnidirectional()"]
  5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6 -->|calls| 88e376e2_7bda_0068_efe3_e98c40394f6b
  b3225ec7_ffc4_ca31_849d_df53090143a8["associatedStreamId()"]
  5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6 -->|calls| b3225ec7_ffc4_ca31_849d_df53090143a8
  b9b34405_e94c_3bde_8a7e_c9d0fc55ca5d["priority()"]
  5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6 -->|calls| b9b34405_e94c_3bde_8a7e_c9d0fc55ca5d
  style 5a8d0f17_8d1e_eab4_75cb_46047c0a5fc6 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySynStreamFrame.java lines 113–141

    @Override
    public String toString() {
        StringBuilder buf = new StringBuilder()
            .append(StringUtil.simpleClassName(this))
            .append("(last: ")
            .append(isLast())
            .append("; unidirectional: ")
            .append(isUnidirectional())
            .append(')')
            .append(StringUtil.NEWLINE)
            .append("--> Stream-ID = ")
            .append(streamId())
            .append(StringUtil.NEWLINE);
        if (associatedStreamId != 0) {
            buf.append("--> Associated-To-Stream-ID = ")
               .append(associatedStreamId())
               .append(StringUtil.NEWLINE);
        }
        buf.append("--> Priority = ")
           .append(priority())
           .append(StringUtil.NEWLINE)
           .append("--> Headers:")
           .append(StringUtil.NEWLINE);
        appendHeaders(buf);

        // Remove the last newline.
        buf.setLength(buf.length() - StringUtil.NEWLINE.length());
        return buf.toString();
    }

Domain

Subdomains

Frequently Asked Questions

What does String() do?
String() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySynStreamFrame.java.
Where is String() defined?
String() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySynStreamFrame.java at line 113.
What does String() call?
String() calls 3 function(s): associatedStreamId, isUnidirectional, priority.

Analyze Your Own Codebase

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

Try Supermodel Free