Home / Function/ typedReasonCodesToOrdinal() — netty Function Reference

typedReasonCodesToOrdinal() — netty Function Reference

Architecture documentation for the typedReasonCodesToOrdinal() function in MqttSubAckPayload.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  c3cf96ee_39cd_8659_48aa_4ac237b36aa2["typedReasonCodesToOrdinal()"]
  a253d873_d4c2_d3f4_be37_3a54b1d9fe63["MqttSubAckPayload"]
  c3cf96ee_39cd_8659_48aa_4ac237b36aa2 -->|defined in| a253d873_d4c2_d3f4_be37_3a54b1d9fe63
  f78e86a4_1d8c_47a3_e82a_9ccf5013f315["reasonCodes()"]
  f78e86a4_1d8c_47a3_e82a_9ccf5013f315 -->|calls| c3cf96ee_39cd_8659_48aa_4ac237b36aa2
  style c3cf96ee_39cd_8659_48aa_4ac237b36aa2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttSubAckPayload.java lines 81–87

    private List<Integer> typedReasonCodesToOrdinal() {
        List<Integer> intCodes = new ArrayList<Integer>(reasonCodes.size());
        for (MqttReasonCodes.SubAck code: reasonCodes) {
            intCodes.add(code.byteValue() & 0xFF);
        }
        return intCodes;
    }

Domain

Subdomains

Called By

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free