com.cjy.fat.redis.operation.GroupKeySetOperation 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 GroupKeySetOperation {
/**
* 注册进入事务分组协调器
* @param rootTxKey
* @param localTxKey
*/
public void addToGroupKeySet(String rootTxKey , String localTxKey);
/**
* 事务分组协调器维护的txKey数量
* @param rootTxKey
* @return
*/
public long sizeGroupKeySet(String rootTxKey) ;
}