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

gu.simplemq.IMessageDispatcher Maven / Gradle / Ivy

The newest version!
package gu.simplemq;

/**
 * 消息分发接口,用于将收到的消息分派到不同的消息处理器
 * @author guyadong
 *
 */
public interface IMessageDispatcher {
	/**
	 * 消息分发
	 * @param channel 收到消息的频道名
	 * @param message 消息内容
	 */
	public void dispatch(String channel, String message);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy