io.geewit.boot.aliyun.ons.utils.MessageBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gw-boot-starter-aliyun-ons Show documentation
Show all versions of gw-boot-starter-aliyun-ons Show documentation
A Java Utils Libraray By Geewit
package io.geewit.boot.aliyun.ons.utils;
import com.aliyun.openservices.ons.api.Message;
import java.nio.charset.StandardCharsets;
/**
* @author geewit
*/
@SuppressWarnings({"unused"})
public class MessageBuilder {
public static Message build(String topic, String tag, String key, String body) {
return new Message(topic, tag, key, body.getBytes(StandardCharsets.UTF_8));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy