-
public class MqttUnsubscribe extends MqttWireMessage
An on-the-wire representation of an MQTT UNSUBSCRIBE message.
-
-
Constructor Summary
Constructors Constructor Description MqttUnsubscribe(Array<String> names)Constructs an MqttUnsubscribe MqttUnsubscribe(byte info, Array<byte> data)Constructor for an on the wire MQTT un-subscribe message
-
Method Summary
Modifier and Type Method Description Array<String>getNames()intgetCount()StringtoString()Array<byte>getPayload()Sub-classes should override this method to supply the payload bytes. booleanisRetryable()-
Methods inherited from class org.eclipse.paho.client.mqttv3.internal.wire.MqttWireMessage
createWireMessage, createWireMessage, getHeader, getKey, getMessageId, getToken, getType, isMessageIdRequired, packetName, setDuplicate, setMessageId, setToken -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getCount
int getCount()
-
getPayload
Array<byte> getPayload()
Sub-classes should override this method to supply the payload bytes.
-
isRetryable
boolean isRetryable()
-
-
-
-