com.jn.agileway.dmmq.core.MessageHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agileway-dmmq Show documentation
Show all versions of agileway-dmmq Show documentation
a memory message queue based on disruptor
package com.jn.agileway.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;
}
}