com.cjy.fat.redis.operation.ServiceErrorOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fat-common Show documentation
Show all versions of fat-common Show documentation
fat , the resolver of soa transaction
package com.cjy.fat.redis.operation;
public interface ServiceErrorOperation {
/**
* 初始化事务回滚标识
* @param txKey
*/
public void serviceNomal(String txKey);
/**
* 事务出错
* @param txKey
*/
public void serviceError(String txKey);
/**
* 是否事务出错
* @param txKey
* @return
*/
public void isServiceError(String txKey);
}