Home / Function/ getAtNanos() — netty Function Reference

getAtNanos() — netty Function Reference

Architecture documentation for the getAtNanos() function in QuicheSendInfo.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  3b677579_95d6_2f0b_a341_afb5efd20f55["getAtNanos()"]
  a86a4a82_8e10_67db_34b9_5c0d08a69c0c["QuicheSendInfo"]
  3b677579_95d6_2f0b_a341_afb5efd20f55 -->|defined in| a86a4a82_8e10_67db_34b9_5c0d08a69c0c
  style 3b677579_95d6_2f0b_a341_afb5efd20f55 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicheSendInfo.java lines 152–158

    static long getAtNanos(ByteBuffer memory) {
        long sec = Quiche.getPrimitiveValue(memory, Quiche.QUICHE_SEND_INFO_OFFSETOF_AT +
                Quiche.TIMESPEC_OFFSETOF_TV_SEC, Quiche.SIZEOF_TIME_T);
        long nsec = Quiche.getPrimitiveValue(memory, Quiche.QUICHE_SEND_INFO_OFFSETOF_AT +
                Quiche.TIMESPEC_OFFSETOF_TV_SEC, Quiche.SIZEOF_LONG);
        return TimeUnit.SECONDS.toNanos(sec) + nsec;
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free