All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.quickmsg.common.message.SmqttMessage Maven / Gradle / Ivy

The newest version!
package io.github.quickmsg.common.message;

import io.netty.handler.codec.mqtt.MqttMessage;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;
import lombok.ToString;

/**
 * @author luxurong
 */
@Getter
@Setter
@ToString
 @AllArgsConstructor
public class SmqttMessage {

    private T message;

    private long timestamp;

    private Boolean isCluster;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy