setFinalBuffer() — netty Function Reference
Architecture documentation for the setFinalBuffer() function in HttpPostStandardRequestDecoder.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 27ed40dc_380e_8a3b_3226_377c2a135fa9["setFinalBuffer()"] 9a5a01b4_1d50_03ee_e135_2164d7bf32cb["HttpPostStandardRequestDecoder"] 27ed40dc_380e_8a3b_3226_377c2a135fa9 -->|defined in| 9a5a01b4_1d50_03ee_e135_2164d7bf32cb 47cf8780_9b26_3d2c_c197_23d4789457b4["parseBodyAttributesStandard()"] 47cf8780_9b26_3d2c_c197_23d4789457b4 -->|calls| 27ed40dc_380e_8a3b_3226_377c2a135fa9 c71d2c6b_810f_0117_65ca_127d4b53887d["addHttpData()"] 27ed40dc_380e_8a3b_3226_377c2a135fa9 -->|calls| c71d2c6b_810f_0117_65ca_127d4b53887d style 27ed40dc_380e_8a3b_3226_377c2a135fa9 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostStandardRequestDecoder.java lines 575–583
private void setFinalBuffer(ByteBuf buffer) throws IOException {
currentAttribute.addContent(buffer, true);
ByteBuf decodedBuf = decodeAttribute(currentAttribute.getByteBuf(), charset);
if (decodedBuf != null) { // override content only when ByteBuf needed decoding
currentAttribute.setContent(decodedBuf);
}
addHttpData(currentAttribute);
currentAttribute = null;
}
Domain
Subdomains
Defined In
Calls
Called By
Source
Frequently Asked Questions
What does setFinalBuffer() do?
setFinalBuffer() is a function in the netty codebase, defined in codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostStandardRequestDecoder.java.
Where is setFinalBuffer() defined?
setFinalBuffer() is defined in codec-http/src/main/java/io/netty/handler/codec/http/multipart/HttpPostStandardRequestDecoder.java at line 575.
What does setFinalBuffer() call?
setFinalBuffer() calls 1 function(s): addHttpData.
What calls setFinalBuffer()?
setFinalBuffer() is called by 1 function(s): parseBodyAttributesStandard.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free