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

com.yuweix.kuafu.data.elect.Redis Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.yuweix.kuafu.data.elect;




/**
 * @author yuwei
 */
public interface Redis {
	/**
	 * @param timeout 单位:秒。
	 * 返回锁的持有者。
	 */
	String lock(String key, String owner, long timeout);
	boolean unlock(String key, String owner);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy