appendFullCommon() — netty Function Reference
Architecture documentation for the appendFullCommon() function in HttpMessageUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7d550468_5c36_a2d2_096d_ee434cca5d49["appendFullCommon()"] a7701c8b_92f5_d661_eb6f_e3a87ad9ad0e["HttpMessageUtil"] 7d550468_5c36_a2d2_096d_ee434cca5d49 -->|defined in| a7701c8b_92f5_d661_eb6f_e3a87ad9ad0e 8bf53662_4fbc_588c_7b3c_40de22b189b1["StringBuilder()"] 8bf53662_4fbc_588c_7b3c_40de22b189b1 -->|calls| 7d550468_5c36_a2d2_096d_ee434cca5d49 style 7d550468_5c36_a2d2_096d_ee434cca5d49 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java lines 71–81
private static void appendFullCommon(StringBuilder buf, FullHttpMessage msg) {
buf.append(StringUtil.simpleClassName(msg));
buf.append("(decodeResult: ");
buf.append(msg.decoderResult());
buf.append(", version: ");
buf.append(msg.protocolVersion());
buf.append(", content: ");
buf.append(msg.content());
buf.append(')');
buf.append(StringUtil.NEWLINE);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does appendFullCommon() do?
appendFullCommon() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java.
Where is appendFullCommon() defined?
appendFullCommon() is defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java at line 71.
What calls appendFullCommon()?
appendFullCommon() is called by 1 function(s): StringBuilder.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free