package com.cmos.msgframe.admin.service;

import com.cmos.msgframe.common.util.OutPutParameter;

public interface IMessageService {

	OutPutParameter getMessageById(String msgId) throws Exception;

	OutPutParameter getMessageByKey(String topic, String Key,int start,int end)
			throws Exception;

	OutPutParameter getMessageByOffset(String topic, String brokerName,
			String offset, String queueId) throws Exception;
}
