- java.lang.Object
-
- swim.mqtt.MqttPacket<Object>
-
- swim.mqtt.MqttUnsubAckPacket
-
- All Implemented Interfaces:
Debug
public final class MqttUnsubAckPacket extends MqttPacket<Object> implements Debug
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static MqttUnsubAckPacket
create(int packetId)
static MqttUnsubAckPacket
create(int packetFlags, int packetId)
<T> Output<T>
debug(Output<T> output)
Writes a developer readable, debug-formatted string representation of this object tooutput
.Encoder<?,MqttUnsubAckPacket>
encodeMqtt(OutputBuffer<?> output, MqttEncoder mqtt)
boolean
equals(Object other)
int
hashCode()
Encoder<?,MqttUnsubAckPacket>
mqttEncoder(MqttEncoder mqtt)
int
packetFlags()
MqttUnsubAckPacket
packetFlags(int packetFlags)
int
packetId()
MqttUnsubAckPacket
packetId(int packetId)
int
packetType()
String
toString()
-
Methods inherited from class swim.mqtt.MqttPacket
encodeMqtt, mqttEncoder
-
-
-
-
Method Detail
-
packetType
public int packetType()
- Specified by:
packetType
in classMqttPacket<Object>
-
packetFlags
public int packetFlags()
- Specified by:
packetFlags
in classMqttPacket<Object>
-
packetFlags
public MqttUnsubAckPacket packetFlags(int packetFlags)
-
packetId
public int packetId()
-
packetId
public MqttUnsubAckPacket packetId(int packetId)
-
mqttEncoder
public Encoder<?,MqttUnsubAckPacket> mqttEncoder(MqttEncoder mqtt)
- Specified by:
mqttEncoder
in classMqttPacket<Object>
-
encodeMqtt
public Encoder<?,MqttUnsubAckPacket> encodeMqtt(OutputBuffer<?> output, MqttEncoder mqtt)
- Specified by:
encodeMqtt
in classMqttPacket<Object>
-
debug
public <T> Output<T> debug(Output<T> output)
Description copied from interface:Debug
Writes a developer readable, debug-formatted string representation of this object tooutput
.
-
create
public static MqttUnsubAckPacket create(int packetFlags, int packetId)
-
create
public static MqttUnsubAckPacket create(int packetId)
-
-