gu.simplemq.IQueueComponent Maven / Gradle / Ivy
The newest version!
package gu.simplemq;
import java.util.concurrent.BlockingQueue;
/**
* 队列组件接口
* @author guyadong
*
* @param 队列元素类型
*/
public interface IQueueComponent {
/**
* 返回队列名称
*/
public String getQueueName();
/**
* 返回队列对象
*/
public BlockingQueue getQueue();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy