write() — netty Function Reference
Architecture documentation for the write() function in UniformStreamByteDistributor.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 5f2d025b_d4ae_5222_7318_105d186fc0cd["write()"] 52e74647_0bb8_efef_82ff_44ea07c3c527["State"] 5f2d025b_d4ae_5222_7318_105d186fc0cd -->|defined in| 52e74647_0bb8_efef_82ff_44ea07c3c527 9aa76083_f372_5469_df81_9b5573b58931["distribute()"] 9aa76083_f372_5469_df81_9b5573b58931 -->|calls| 5f2d025b_d4ae_5222_7318_105d186fc0cd style 5f2d025b_d4ae_5222_7318_105d186fc0cd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-http2/src/main/java/io/netty/handler/codec/http2/UniformStreamByteDistributor.java lines 168–178
void write(int numBytes, Writer writer) throws Http2Exception {
writing = true;
try {
// Write the allocated bytes.
writer.write(stream, numBytes);
} catch (Throwable t) {
throw connectionError(INTERNAL_ERROR, t, "byte distribution write error");
} finally {
writing = false;
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does write() do?
write() is a function in the netty codebase, defined in codec-http2/src/main/java/io/netty/handler/codec/http2/UniformStreamByteDistributor.java.
Where is write() defined?
write() is defined in codec-http2/src/main/java/io/netty/handler/codec/http2/UniformStreamByteDistributor.java at line 168.
What calls write()?
write() is called by 1 function(s): distribute.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free