MqttConnectPayload() — netty Function Reference
Architecture documentation for the MqttConnectPayload() function in MqttConnectPayload.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9cf42b43_4c39_67de_8d34_d8b7509843e5["MqttConnectPayload()"] 0f7cdd30_cc7d_a2f7_b7a2_9678b7214db6["MqttConnectPayload"] 9cf42b43_4c39_67de_8d34_d8b7509843e5 -->|defined in| 0f7cdd30_cc7d_a2f7_b7a2_9678b7214db6 style 9cf42b43_4c39_67de_8d34_d8b7509843e5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttConnectPayload.java lines 40–54
@Deprecated
public MqttConnectPayload(
String clientIdentifier,
String willTopic,
String willMessage,
String userName,
String password) {
this(
clientIdentifier,
MqttProperties.NO_PROPERTIES,
willTopic,
willMessage.getBytes(CharsetUtil.UTF_8),
userName,
password.getBytes(CharsetUtil.UTF_8));
}
Domain
Subdomains
Source
Frequently Asked Questions
What does MqttConnectPayload() do?
MqttConnectPayload() is a function in the netty codebase, defined in codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttConnectPayload.java.
Where is MqttConnectPayload() defined?
MqttConnectPayload() is defined in codec-mqtt/src/main/java/io/netty/handler/codec/mqtt/MqttConnectPayload.java at line 40.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free