Home / Function/ nullableMaxUtf8Bytes() — netty Function Reference

nullableMaxUtf8Bytes() — netty Function Reference

Architecture documentation for the nullableMaxUtf8Bytes() function in MqttEncoder.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  79dad782_f802_b810_8291_37a8e2fb6122["nullableMaxUtf8Bytes()"]
  13c11c97_f8b9_b829_dd75_63846e7fcd55["MqttEncoder"]
  79dad782_f802_b810_8291_37a8e2fb6122 -->|defined in| 13c11c97_f8b9_b829_dd75_63846e7fcd55
  f74bb6b2_2564_0b6f_d854_438c7e723c1a["writeEagerUTF8String()"]
  f74bb6b2_2564_0b6f_d854_438c7e723c1a -->|calls| 79dad782_f802_b810_8291_37a8e2fb6122
  style 79dad782_f802_b810_8291_37a8e2fb6122 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttEncoder.java lines 729–731

    private static int nullableMaxUtf8Bytes(String s) {
        return s == null? 0 : utf8MaxBytes(s);
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free