/*
* 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;
import io.netty.buffer.ByteBuf;
import io.netty.handler.codec.mqtt.MqttQoS;
import io.vertx.codegen.annotations.CacheReturn;
import io.vertx.codegen.annotations.GenIgnore;
import io.vertx.codegen.annotations.VertxGen;
import io.vertx.core.buffer.Buffer;
import io.vertx.mqtt.messages.impl.MqttPublishMessageImpl;
Represents an MQTT PUBLISH message
/**
* Represents an MQTT PUBLISH message
*/
@VertxGen
public interface MqttPublishMessage extends MqttMessage {
Create a concrete instance of a Vert.x publish message
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
Returns: Vert.x publish message
/**
* Create a concrete instance of a Vert.x publish message
*
* @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
* @return Vert.x publish message
*/
@GenIgnore
static MqttPublishMessage create(int messageId, MqttQoS qosLevel, boolean isDup, boolean isRetain, String topicName, ByteBuf payload) {
return new MqttPublishMessageImpl(messageId, qosLevel, isDup, isRetain, topicName, payload);
}
Returns: Quality of service level
/**
* @return Quality of service level
*/
@CacheReturn
MqttQoS qosLevel();
Returns: If the message is a duplicate
/**
* @return If the message is a duplicate
*/
@CacheReturn
boolean isDup();
Returns: If the message needs to be retained
/**
* @return If the message needs to be retained
*/
@CacheReturn
boolean isRetain();
Returns: Topic on which the message was published
/**
* @return Topic on which the message was published
*/
@CacheReturn
String topicName();
Returns: Payload message
/**
* @return Payload message
*/
@CacheReturn
Buffer payload();
}