setLong() — netty Function Reference
Architecture documentation for the setLong() function in HeapByteBufUtil.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 5841b0fe_a861_45e8_4a9b_efd8d623f364["setLong()"] 96900c63_c206_9fee_a447_dc63a822832b["HeapByteBufUtil"] 5841b0fe_a861_45e8_4a9b_efd8d623f364 -->|defined in| 96900c63_c206_9fee_a447_dc63a822832b b955fdde_c037_2710_b667_9c31d8fac891["setLong0()"] 5841b0fe_a861_45e8_4a9b_efd8d623f364 -->|calls| b955fdde_c037_2710_b667_9c31d8fac891 style 5841b0fe_a861_45e8_4a9b_efd8d623f364 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java lines 187–193
static void setLong(byte[] memory, int index, long value) {
if (PlatformDependent.hasVarHandle()) {
VarHandleByteBufferAccess.setLongBE(memory, index, value);
return;
}
setLong0(memory, index, value);
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does setLong() do?
setLong() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java.
Where is setLong() defined?
setLong() is defined in buffer/src/main/java/io/netty/buffer/HeapByteBufUtil.java at line 187.
What does setLong() call?
setLong() calls 1 function(s): setLong0.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free