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

com.alibaba.tmq.client.system.consumer.Consumer Maven / Gradle / Ivy

package com.alibaba.tmq.client.system.consumer;

import com.alibaba.tmq.client.system.Role;
import com.alibaba.tmq.client.system.consumer.listener.MessageListener;

/**
 * 消费者
 * @author tianyao.myc
 *
 */
public interface Consumer extends Role {

	/**
	 * 订阅消息
	 *  topic
	 *  tag
	 *  messageListener
	 */
	public void subscribe(String topic, String tag, MessageListener messageListener);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy