com.cjy.fat.redis.operation.GroupCanCommitListOperation 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 GroupCanCommitListOperation {
/**
* 将groupServiceSet的元素放入到groupCancommit
*/
public void pushGroupServiceSetToGroupCommitList(String txKey);
/**
* 获取事务分组协调器可提交标识
* @param rootTxKey
* @param waitMilliesSecond
* @return
*/
public String popGroupCancommit(String rootTxKey , long waitMilliesSecond) ;
}