Home / Function/ ByteBuf() — netty Function Reference

ByteBuf() — netty Function Reference

Architecture documentation for the ByteBuf() function in Quiche.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  32b267d2_05ca_5442_eb91_b514cc67c913["ByteBuf()"]
  6971678f_642f_87e6_e277_8e03dc5756a8["Quiche"]
  32b267d2_05ca_5442_eb91_b514cc67c913 -->|defined in| 6971678f_642f_87e6_e277_8e03dc5756a8
  style 32b267d2_05ca_5442_eb91_b514cc67c913 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/Quiche.java lines 799–807

    @SuppressWarnings("deprecation")
    static ByteBuf allocateNativeOrder(int capacity) {
        // Just use Unpooled as the life-time of these buffers is long.
        ByteBuf buffer = Unpooled.directBuffer(capacity);

        // As we use the buffers as pointers to int etc we need to ensure we use the right oder so we will
        // see the right value when we read primitive values.
        return PlatformDependent.BIG_ENDIAN_NATIVE_ORDER ? buffer : buffer.order(ByteOrder.LITTLE_ENDIAN);
    }

Domain

Subdomains

Frequently Asked Questions

What does ByteBuf() do?
ByteBuf() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/Quiche.java.
Where is ByteBuf() defined?
ByteBuf() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/Quiche.java at line 799.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free