Home / Function/ MqttProperties() — netty Function Reference

MqttProperties() — netty Function Reference

Architecture documentation for the MqttProperties() function in MqttPropertiesTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9e21ba54_8664_20bf_4b22_9f5ce356e545["MqttProperties()"]
  f414ff6c_018e_0573_189d_472f0d888c3d["MqttPropertiesTest"]
  9e21ba54_8664_20bf_4b22_9f5ce356e545 -->|defined in| f414ff6c_018e_0573_189d_472f0d888c3d
  style 9e21ba54_8664_20bf_4b22_9f5ce356e545 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-mqtt/src/test/java/io/netty/handler/codec/mqtt/MqttPropertiesTest.java lines 34–44

    private MqttProperties createSampleProperties() {
        MqttProperties props = new MqttProperties();
        props.add(new MqttProperties.IntegerProperty(SUBSCRIPTION_IDENTIFIER, 10));
        props.add(new MqttProperties.IntegerProperty(SUBSCRIPTION_IDENTIFIER, 20));
        props.add(new MqttProperties.IntegerProperty(PAYLOAD_FORMAT_INDICATOR, 6));
        props.add(new MqttProperties.StringProperty(CONTENT_TYPE, "text/plain"));
        props.add(new MqttProperties.UserProperty("isSecret", "true"));
        props.add(new MqttProperties.UserProperty("tag", "firstTag"));
        props.add(new MqttProperties.UserProperty("tag", "secondTag"));
        return props;
    }

Domain

Subdomains

Frequently Asked Questions

What does MqttProperties() do?
MqttProperties() is a function in the netty codebase, defined in codec-mqtt/src/test/java/io/netty/handler/codec/mqtt/MqttPropertiesTest.java.
Where is MqttProperties() defined?
MqttProperties() is defined in codec-mqtt/src/test/java/io/netty/handler/codec/mqtt/MqttPropertiesTest.java at line 34.

Analyze Your Own Codebase

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

Try Supermodel Free