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

com.github.lontime.extredisson.common.MessageWithId Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.github.lontime.extredisson.common;

import com.github.lontime.base.serial.mq.Message;

/**
 * MessageWithId.
 * @author lontime
 * @since 1.0
 */
public class MessageWithId {

    private Message message;

    private String id;

    public MessageWithId(String id, Message message) {
        this.message = message;
        this.id = id;
    }

    public Message getMessage() {
        return message;
    }

    public String getId() {
        return id;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy