Interface MqttPubRelMessage
public interface MqttPubRelMessage
Represents an MQTT PUBREL message
-
Method Summary
Modifier and TypeMethodDescriptioncode()static MqttPubRelMessagecreate(int messageId, MqttPubRelReasonCode code, MqttProperties properties) Create a concrete instance of a Vert.x pubrel messageint
-
Method Details
-
create
static MqttPubRelMessage create(int messageId, MqttPubRelReasonCode code, MqttProperties properties) Create a concrete instance of a Vert.x pubrel message- Parameters:
messageId- message Idcode- return code from the pubrelproperties- MQTT properties of the pubrel message- Returns:
-
messageId
int messageId() -
code
MqttPubRelReasonCode code()- Returns:
- reason code from the pubrel request
-
properties
MqttProperties properties()- Returns:
- MQTT properties
-