appendSettings() — netty Function Reference
Architecture documentation for the appendSettings() function in DefaultSpdySettingsFrame.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 7e14501e_813c_ddf9_0985_44e54710841e["appendSettings()"] b8bbc5c7_4c0d_6e3c_51cf_3b8ad757266d["DefaultSpdySettingsFrame"] 7e14501e_813c_ddf9_0985_44e54710841e -->|defined in| b8bbc5c7_4c0d_6e3c_51cf_3b8ad757266d f02dcabb_b497_1ab8_0dfe_60b5425763a2["String()"] f02dcabb_b497_1ab8_0dfe_60b5425763a2 -->|calls| 7e14501e_813c_ddf9_0985_44e54710841e 2fce5edc_481d_0886_5d61_b00cdc08e472["getSettings()"] 7e14501e_813c_ddf9_0985_44e54710841e -->|calls| 2fce5edc_481d_0886_5d61_b00cdc08e472 82bdd59f_0375_8e4b_46e2_4150646e13b9["isPersist()"] 7e14501e_813c_ddf9_0985_44e54710841e -->|calls| 82bdd59f_0375_8e4b_46e2_4150646e13b9 081d1f2f_1cb1_47b3_647d_4c2b00ca1146["getValue()"] 7e14501e_813c_ddf9_0985_44e54710841e -->|calls| 081d1f2f_1cb1_47b3_647d_4c2b00ca1146 83c1b5aa_d01c_bfc5_8dd8_5d8d89bdd6ed["isPersisted()"] 7e14501e_813c_ddf9_0985_44e54710841e -->|calls| 83c1b5aa_d01c_bfc5_8dd8_5d8d89bdd6ed style 7e14501e_813c_ddf9_0985_44e54710841e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java lines 121–135
private void appendSettings(StringBuilder buf) {
for (Map.Entry<Integer, Setting> e: getSettings()) {
Setting setting = e.getValue();
buf.append("--> ");
buf.append(e.getKey());
buf.append(':');
buf.append(setting.getValue());
buf.append(" (persist value: ");
buf.append(setting.isPersist());
buf.append("; persisted: ");
buf.append(setting.isPersisted());
buf.append(')');
buf.append(StringUtil.NEWLINE);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does appendSettings() do?
appendSettings() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java.
Where is appendSettings() defined?
appendSettings() is defined in codec-http/src/main/java/io/netty/handler/codec/spdy/DefaultSpdySettingsFrame.java at line 121.
What does appendSettings() call?
appendSettings() calls 4 function(s): getSettings, getValue, isPersist, isPersisted.
What calls appendSettings()?
appendSettings() is called by 1 function(s): String.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free