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

com.jn.dmmq.core.MessageHolder Maven / Gradle / Ivy

The newest version!
package com.jn.dmmq.core;

import com.jn.langx.util.struct.Holder;

public class MessageHolder extends Holder implements TopicNameAware {
    private String topicName;

    @Override
    public String getTopicName() {
        return topicName;
    }

    @Override
    public void setTopicName(String topicName) {
        this.topicName = topicName;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy