All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cjy.fat.redis.GroupCanCommitListOperation Maven / Gradle / Ivy

package com.cjy.fat.redis;

public interface GroupCanCommitListOperation {
	
	/**
	 * 将groupServiceSet的元素放入到groupCancommit
	 */
	public void pushGroupServiceSetToGroupCommitList(String txKey);
	
	/**
	 * 获取事务分组协调器可提交标识
	 * @param rootTxKey
	 * @param waitMilliesSecond
	 * @return
	 */
	public String popGroupCancommit(String rootTxKey , long waitMilliesSecond) ;
	
	/**
	 * 将当前txKey维护的serviceSet元素加入到groupCommitList
	 */
	public void pushServiceSetToGroupCommitList(String txKey , String rootTxKey);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy