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

com.aliyun.openservices.ons.api.Producer Maven / Gradle / Ivy

There is a newer version: 2.0.7.Final
Show newest version
package com.aliyun.openservices.ons.api;

/**
 * 消息生产者接口
 */
public interface Producer extends Admin {
    /**
     * 启动服务
     */
    public void start();


    /**
     * 关闭服务
     */
    public void shutdown();


    /**
     * 同步发送消息,只要不抛异常就表示成功
     *
     * @param message
     *
     * @return 发送结果,含消息Id
     */
    public SendResult send(final Message message);


    /**
     * 发送消息,Oneway形式,服务器不应答,无法保证消息是否成功到达服务器
     *
     * @param message
     */
    public void sendOneway(final Message message);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy