_setLong() — netty Function Reference
Architecture documentation for the _setLong() function in UnpooledDirectByteBuf.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9c8fb383_cab5_1584_d4de_c45a30b843cd["_setLong()"] 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9["UnpooledDirectByteBuf"] 9c8fb383_cab5_1584_d4de_c45a30b843cd -->|defined in| 9d6a7cd0_08a5_9155_3c10_b8a8fd6480e9 9227405f_42f2_925d_5a57_145999e5270e["ByteBuf()"] 9227405f_42f2_925d_5a57_145999e5270e -->|calls| 9c8fb383_cab5_1584_d4de_c45a30b843cd style 9c8fb383_cab5_1584_d4de_c45a30b843cd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java lines 540–547
@Override
protected void _setLong(int index, long value) {
if (PlatformDependent.hasVarHandle()) {
VarHandleByteBufferAccess.setLongBE(buffer, index, value);
return;
}
buffer.putLong(index, value);
}
Domain
Subdomains
Called By
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/UnpooledDirectByteBuf.java.
Where is _setLong() defined?
_setLong() is defined in buffer/src/main/java/io/netty/buffer/UnpooledDirectByteBuf.java at line 540.
What calls _setLong()?
_setLong() is called by 1 function(s): ByteBuf.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free