_getLong() — netty Function Reference
Architecture documentation for the _getLong() function in UnpooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d1060e47_bf83_c6a6_f783_2b06879fe57f["_getLong()"] 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"] d1060e47_bf83_c6a6_f783_2b06879fe57f -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9 d4b82886_6cf5_1dc0_567c_5348ed637626["getLong()"] d4b82886_6cf5_1dc0_567c_5348ed637626 -->|calls| d1060e47_bf83_c6a6_f783_2b06879fe57f d4b82886_6cf5_1dc0_567c_5348ed637626["getLong()"] d1060e47_bf83_c6a6_f783_2b06879fe57f -->|calls| d4b82886_6cf5_1dc0_567c_5348ed637626 style d1060e47_bf83_c6a6_f783_2b06879fe57f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 336–342
@Override
protected long _getLong(int index) {
if (PlatformDependent.hasVarHandle()) {
return VarHandleByteBufferAccess.getLongBE(buffer, index);
}
return buffer.getLong(index);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does _getLong() do?
_getLong() is a function in the netty codebase, defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java.
Where is _getLong() defined?
_getLong() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 336.
What does _getLong() call?
_getLong() calls 1 function(s): getLong.
What calls _getLong()?
_getLong() is called by 1 function(s): getLong.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free