Home / Function/ SegmentedDatagramPacketAllocator() — netty Function Reference

SegmentedDatagramPacketAllocator() — netty Function Reference

Architecture documentation for the SegmentedDatagramPacketAllocator() function in EpollQuicUtils.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  14978cd1_ddcb_1761_f357_85238ea9d49e["SegmentedDatagramPacketAllocator()"]
  abe05d2b_7c0b_41d8_603b_9db3e54f7ecd["EpollQuicUtils"]
  14978cd1_ddcb_1761_f357_85238ea9d49e -->|defined in| abe05d2b_7c0b_41d8_603b_9db3e54f7ecd
  ed9b4527_be62_ff38_6e67_d253e819e3c2["EpollSegmentedDatagramPacketAllocator()"]
  14978cd1_ddcb_1761_f357_85238ea9d49e -->|calls| ed9b4527_be62_ff38_6e67_d253e819e3c2
  style 14978cd1_ddcb_1761_f357_85238ea9d49e fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/EpollQuicUtils.java lines 39–45

    public static SegmentedDatagramPacketAllocator newSegmentedAllocator(int maxNumSegments) {
        ObjectUtil.checkInRange(maxNumSegments, 1, 64, "maxNumSegments");
        if (SegmentedDatagramPacket.isSupported()) {
            return new EpollSegmentedDatagramPacketAllocator(maxNumSegments);
        }
        return SegmentedDatagramPacketAllocator.NONE;
    }

Domain

Subdomains

Frequently Asked Questions

What does SegmentedDatagramPacketAllocator() do?
SegmentedDatagramPacketAllocator() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/EpollQuicUtils.java.
Where is SegmentedDatagramPacketAllocator() defined?
SegmentedDatagramPacketAllocator() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/EpollQuicUtils.java at line 39.
What does SegmentedDatagramPacketAllocator() call?
SegmentedDatagramPacketAllocator() calls 1 function(s): EpollSegmentedDatagramPacketAllocator.

Analyze Your Own Codebase

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

Try Supermodel Free