This commit is contained in:
Redkale
2020-05-27 15:22:41 +08:00
parent 3130e00bab
commit fcd69474a2

View File

@@ -45,12 +45,12 @@ public class MessageRecord implements Serializable {
public MessageRecord() {
}
public MessageRecord(String resptopic, Convert convert, Object bean) {
this(System.nanoTime(), 0, 0, null, null, resptopic, convert.convertToBytes(bean));
public MessageRecord(String topic, String resptopic, Convert convert, Object bean) {
this(System.nanoTime(), 0, 0, null, topic, resptopic, convert.convertToBytes(bean));
}
public MessageRecord(String resptopic, byte[] content) {
this(System.nanoTime(), 0, 0, null, null, resptopic, content);
public MessageRecord(String topic, String resptopic, byte[] content) {
this(System.nanoTime(), 0, 0, null, topic, resptopic, content);
}
public MessageRecord(long seqid, String topic, String resptopic, byte[] content) {