io.github.pleuvoir.rabbit.MQMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rabbitmq-plugin Show documentation
Show all versions of rabbitmq-plugin Show documentation
The project provide more reliability to use rabbitmq.
package io.github.pleuvoir.rabbit;
import com.alibaba.fastjson.JSON;
public abstract class MQMessage {
public String toJSON() {
return JSON.toJSONString(this);
}
}