readBytes() — netty Function Reference
Architecture documentation for the readBytes() function in ByteBufAccessBenchmark.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 839145d2_2231_5b5c_24cb_6278a120e569["readBytes()"] bbe8e86b_057f_5aa0_71ed_6d8276f6f6f8["ByteBufAccessBenchmark"] 839145d2_2231_5b5c_24cb_6278a120e569 -->|defined in| bbe8e86b_057f_5aa0_71ed_6d8276f6f6f8 61df950d_7e92_6b20_f940_a350a421c201["readByte()"] 839145d2_2231_5b5c_24cb_6278a120e569 -->|calls| 61df950d_7e92_6b20_f940_a350a421c201 style 839145d2_2231_5b5c_24cb_6278a120e569 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
microbench/src/main/java/io/netty/buffer/ByteBufAccessBenchmark.java lines 290–298
@Benchmark
public void readBytes(Blackhole bh) {
buffer.readerIndex(0);
ByteBuf buffer = this.buffer;
bh.consume(buffer.readByte());
bh.consume(buffer.readShortLE());
bh.consume(buffer.readIntLE());
bh.consume(buffer.readLongLE());
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does readBytes() do?
readBytes() is a function in the netty codebase, defined in microbench/src/main/java/io/netty/buffer/ByteBufAccessBenchmark.java.
Where is readBytes() defined?
readBytes() is defined in microbench/src/main/java/io/netty/buffer/ByteBufAccessBenchmark.java at line 290.
What does readBytes() call?
readBytes() calls 1 function(s): readByte.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free