readShortLE() — netty Function Reference
Architecture documentation for the readShortLE() function in AbstractByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9c6f3f58_01cd_806b_4e6f_33613916e130["readShortLE()"] bbab270f_457a_3319_83a8_0a0540484666["AbstractByteBuf"] 9c6f3f58_01cd_806b_4e6f_33613916e130 -->|defined in| bbab270f_457a_3319_83a8_0a0540484666 855fdf62_ace3_924a_a1cf_6cc67e34fb0c["readUnsignedShortLE()"] 855fdf62_ace3_924a_a1cf_6cc67e34fb0c -->|calls| 9c6f3f58_01cd_806b_4e6f_33613916e130 fdb92d3a_efeb_0954_b7a5_d19c3e9994d9["checkReadableBytes0()"] 9c6f3f58_01cd_806b_4e6f_33613916e130 -->|calls| fdb92d3a_efeb_0954_b7a5_d19c3e9994d9 83b40664_34a6_d7ca_144b_01adc7ffc2e4["_getShortLE()"] 9c6f3f58_01cd_806b_4e6f_33613916e130 -->|calls| 83b40664_34a6_d7ca_144b_01adc7ffc2e4 style 9c6f3f58_01cd_806b_4e6f_33613916e130 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java lines 762–768
@Override
public short readShortLE() {
checkReadableBytes0(2);
short v = _getShortLE(readerIndex);
readerIndex += 2;
return v;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does readShortLE() do?
readShortLE() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java.
Where is readShortLE() defined?
readShortLE() is defined in buffer/src/main/java/io/netty/buffer/AbstractByteBuf.java at line 762.
What does readShortLE() call?
readShortLE() calls 2 function(s): _getShortLE, checkReadableBytes0.
What calls readShortLE()?
readShortLE() is called by 1 function(s): readUnsignedShortLE.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free