Skip to content

Instantly share code, notes, and snippets.

@beersheba
Created January 20, 2018 04:03
Show Gist options
  • Save beersheba/c2b40e164850c5242c3273948b04b8db to your computer and use it in GitHub Desktop.
Save beersheba/c2b40e164850c5242c3273948b04b8db to your computer and use it in GitHub Desktop.
private void publishMessage(String message) {
String publishTopic = "outbox";
MqttMessage msg = new MqttMessage();
msg.setPayload(message.getBytes());
try {
client.publish(publishTopic, msg);
} catch (MqttException e) {
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment