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

com.cjy.fat.redis.operation.ServiceReadyCommitListOperation Maven / Gradle / Ivy

There is a newer version: 1.0.6-RELEASE
Show newest version
package com.cjy.fat.redis.operation;

public interface ServiceReadyCommitListOperation {
	
	/**
	 * 将serviceSet的元素放入到readCommitList
	 */
	public void pushServiceSetToReadCommitList(String txKey);
	
	/**
	 * 写入预备提交的阻塞队列
	 * @param txKey
	 * @param serviceName
	 */
	public void pushReadyCommitList(String txKey , String serviceName);
	
	/**
	 * 争抢预备提交标识,阻塞队列。
	 * @param txKey
	 * @return
	 */
	public String popReadyCommitList(String txKey ,long waitMilliesSecond);
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy