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

io.geewit.boot.aliyun.ons.utils.MessageBuilder Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
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