com.jeesuite.amqp.MQLogHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeesuite-amqp-adapter Show documentation
Show all versions of jeesuite-amqp-adapter Show documentation
MQ适配器,支持各种云厂商云MQ,已经原生kafka,RocketMQ,RabbitMQ等
The newest version!
package com.jeesuite.amqp;
import com.jeesuite.amqp.MQContext.ActionType;
/**
* @description
* @author vakin
* @date 2016年12月10日
*/
public interface MQLogHandler {
public void onSuccess(String groupName,ActionType actionType,MQMessage message);
public void onError(String groupName,ActionType actionType,MQMessage message, Throwable e);
}