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

com.zlyx.easy.asyn.supports.AsynMsgSender Maven / Gradle / Ivy

There is a newer version: 4.3.11
Show newest version
package com.zlyx.easy.asyn.supports;

/**
 * @Auth 赵光
 * @Describle
 * @2019年6月15日 上午10:42:33
 */
public interface AsynMsgSender {

	/**
	 * 自定义发送异步消息方法(点对点)
	 * 
	 * @param title
	 * @param msg
	 * @return
	 */
	void doQuque(String channel, String msg);

	/**
	 * 自定义发送异步消息方法(发布订阅)
	 * 
	 * @param title
	 * @param msg
	 * @return
	 */
	void doTopic(String channel, String msg);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy