byteBufUtilWriteUtf8String() — netty Function Reference
Architecture documentation for the byteBufUtilWriteUtf8String() function in Utf8EncodingBenchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d8aa92f0_ae06_23d8_f85c_be011632b34e["byteBufUtilWriteUtf8String()"] 14a7a416_5aef_2dc8_262c_52585d9f0cac["Utf8EncodingBenchmark"] d8aa92f0_ae06_23d8_f85c_be011632b34e -->|defined in| 14a7a416_5aef_2dc8_262c_52585d9f0cac 640e9533_bf6a_ebdd_f7f7_e4a05ca30d8a["length()"] d8aa92f0_ae06_23d8_f85c_be011632b34e -->|calls| 640e9533_bf6a_ebdd_f7f7_e4a05ca30d8a style d8aa92f0_ae06_23d8_f85c_be011632b34e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/microbench/buffer/Utf8EncodingBenchmark.java lines 181–191
@Benchmark
@CompilerControl(Mode.DONT_INLINE)
public int byteBufUtilWriteUtf8String() {
int countBytes = 0;
for (String string : strings) {
buffer.resetWriterIndex();
ByteBufUtil.writeUtf8(buffer, string, 0, string.length());
countBytes += buffer.writerIndex();
}
return countBytes;
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does byteBufUtilWriteUtf8String() do?
byteBufUtilWriteUtf8String() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/microbench/buffer/Utf8EncodingBenchmark.java.
Where is byteBufUtilWriteUtf8String() defined?
byteBufUtilWriteUtf8String() is defined in microbench/src/main/java/io/netty/microbench/buffer/Utf8EncodingBenchmark.java at line 181.
What does byteBufUtilWriteUtf8String() call?
byteBufUtilWriteUtf8String() calls 1 function(s): length.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free