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

gu.simplemq.IAdvisor Maven / Gradle / Ivy

There is a newer version: 2.3.17
Show newest version
package gu.simplemq;

/**
 * 消息咨询接口
 * @author guyadong
 *
 */
public interface IAdvisor {
	/**
	 * 返回指定频道的消费者数量
	 * @param channelName 频道名
	 * @return 订阅频道的消费者数量,channel为{@code null}或空返回0
	 */
	public int consumerCountOf(String channelName);

	/**
	 * 返回指定频道的订阅者数量
	 * @param channelName 频道名
	 * @return 订阅频道的订阅者数量,channel为{@code null}或空返回0
	 */
	int subscriberCountOf(String channelName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy