com.jeesuite.amqp.TransactionChecker 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;
/**
*
*
* Class Name : TransactionChecker
*
* @author jiangwei
* @version 1.0.0
* @date 2020年8月11日
*/
public interface TransactionChecker {
public static final String TRANSACTION_PARAM_NAME = "transactionId";
MessageStatus check(String transactionId);
}