Package io.vertx.mqtt.messages
Interface MqttSubAckMessage
-
- All Superinterfaces:
MqttMessage
public interface MqttSubAckMessage extends MqttMessage
Represents an MQTT SUBACK message
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static MqttSubAckMessage
create(int messageId, List<Integer> grantedQosLevels)
Create a concrete instance of a Vert.x suback messageList<Integer>
grantedQoSLevels()
-
Methods inherited from interface io.vertx.mqtt.messages.MqttMessage
messageId
-
-
-
-
Method Detail
-
create
static MqttSubAckMessage create(int messageId, List<Integer> grantedQosLevels)
Create a concrete instance of a Vert.x suback message- Parameters:
messageId
- message identifiergrantedQosLevels
- list of granted QoS levels- Returns:
-
-