Home / Function/ packInts() — netty Function Reference

packInts() — netty Function Reference

Architecture documentation for the packInts() function in MqttDecoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  823009ab_d3c4_7d58_e37e_8c1f154013af["packInts()"]
  c4faa729_e212_a3dd_9d90_3e8fd908d755["MqttDecoder"]
  823009ab_d3c4_7d58_e37e_8c1f154013af -->|defined in| c4faa729_e212_a3dd_9d90_3e8fd908d755
  12d15f6d_1e3a_b75b_353d_a5cbfc12349a["decodeVariableByteInteger()"]
  12d15f6d_1e3a_b75b_353d_a5cbfc12349a -->|calls| 823009ab_d3c4_7d58_e37e_8c1f154013af
  style 823009ab_d3c4_7d58_e37e_8c1f154013af fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttDecoder.java lines 698–700

    private static long packInts(int a, int b) {
        return (((long) a) << 32) | (b & 0xFFFFFFFFL);
    }

Domain

Subdomains

Frequently Asked Questions

What does packInts() do?
packInts() is a function in the netty codebase, defined in codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttDecoder.java.
Where is packInts() defined?
packInts() is defined in codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttDecoder.java at line 698.
What calls packInts()?
packInts() is called by 1 function(s): decodeVariableByteInteger.

Analyze Your Own Codebase

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

Try Supermodel Free