public class MqttWill extends Object
Constructor and Description |
---|
MqttWill(boolean isWillFlag,
String willTopic,
String willMessage,
int willQos,
boolean isWillRetain)
Constructor
|
MqttWill(io.vertx.core.json.JsonObject json)
Create instance from JSON
|
Modifier and Type | Method and Description |
---|---|
String |
getWillMessage() |
int |
getWillQos() |
String |
getWillTopic() |
boolean |
isWillFlag() |
boolean |
isWillRetain() |
io.vertx.core.json.JsonObject |
toJson()
Convert instance in JSON
|
String |
willMessage()
Deprecated.
use
willMessage() instead |
int |
willQos()
Deprecated.
use
willQos() instead |
String |
willTopic()
Deprecated.
use
getWillTopic() instead |
public MqttWill(boolean isWillFlag, String willTopic, String willMessage, int willQos, boolean isWillRetain)
isWillFlag
- indicates will message presencewillTopic
- topic to publish the willwillMessage
- payload of the willwillQos
- qos level for the willisWillRetain
- if the will message must be retainedpublic MqttWill(io.vertx.core.json.JsonObject json)
json
- the JSONpublic boolean isWillFlag()
public String getWillTopic()
public String getWillMessage()
public int getWillQos()
public boolean isWillRetain()
@Deprecated public String willTopic()
getWillTopic()
instead@Deprecated public String willMessage()
willMessage()
instead@Deprecated public int willQos()
willQos()
insteadpublic io.vertx.core.json.JsonObject toJson()
Copyright © 2019 Eclipse. All rights reserved.