/*
 * Copyright 2016 Red Hat Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package io.vertx.mqtt.messages.impl;

import io.netty.buffer.ByteBuf;
import io.netty.handler.codec.mqtt.MqttQoS;
import io.vertx.core.buffer.Buffer;
import io.vertx.mqtt.messages.MqttPublishMessage;

Represents an MQTT PUBLISH message
/** * Represents an MQTT PUBLISH message */
public class MqttPublishMessageImpl implements MqttPublishMessage { private final int messageId; private final MqttQoS qosLevel; private final boolean isDup; private final boolean isRetain; private final String topicName; private final Buffer payload;
Constructor
Params:
  • messageId – message identifier
  • qosLevel – quality of service level
  • isDup – if the message is a duplicate
  • isRetain – if the message needs to be retained
  • topicName – topic on which the message was published
  • payload – payload message
/** * Constructor * * @param messageId message identifier * @param qosLevel quality of service level * @param isDup if the message is a duplicate * @param isRetain if the message needs to be retained * @param topicName topic on which the message was published * @param payload payload message */
public MqttPublishMessageImpl(int messageId, MqttQoS qosLevel, boolean isDup, boolean isRetain, String topicName, ByteBuf payload) { this.messageId = messageId; this.qosLevel = qosLevel; this.isDup = isDup; this.isRetain = isRetain; this.topicName = topicName; this.payload = Buffer.buffer(payload); } public int messageId() { return this.messageId; } public MqttQoS qosLevel() { return this.qosLevel; } public boolean isDup() { return this.isDup; } public boolean isRetain() { return this.isRetain; } public String topicName() { return this.topicName; } public Buffer payload() { return this.payload; } }