appendCommon() — netty Function Reference
Architecture documentation for the appendCommon() function in HttpMessageUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD ee2dfc60_a62f_399d_202a_aeafad8d7092["appendCommon()"] a7701c8b_92f5_d661_eb6f_e3a87ad9ad0e["HttpMessageUtil"] ee2dfc60_a62f_399d_202a_aeafad8d7092 -->|defined in| a7701c8b_92f5_d661_eb6f_e3a87ad9ad0e 8bf53662_4fbc_588c_7b3c_40de22b189b1["StringBuilder()"] 8bf53662_4fbc_588c_7b3c_40de22b189b1 -->|calls| ee2dfc60_a62f_399d_202a_aeafad8d7092 style ee2dfc60_a62f_399d_202a_aeafad8d7092 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java lines 43–51
private static void appendCommon(StringBuilder buf, HttpMessage msg) {
buf.append(StringUtil.simpleClassName(msg));
buf.append("(decodeResult: ");
buf.append(msg.decoderResult());
buf.append(", version: ");
buf.append(msg.protocolVersion());
buf.append(')');
buf.append(StringUtil.NEWLINE);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does appendCommon() do?
appendCommon() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java.
Where is appendCommon() defined?
appendCommon() is defined in codec-http/src/main/java/io/netty/handler/codec/http/HttpMessageUtil.java at line 43.
What calls appendCommon()?
appendCommon() 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