cn.lingyangwl.framework.lock.manager.ILockManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lock-spring-boot-starter Show documentation
Show all versions of lock-spring-boot-starter Show documentation
lingyang framework 适用所有java项目的公共库, 方便快速集成和使用, 提供工作效率
The newest version!
package cn.lingyangwl.framework.lock.manager;
import cn.lingyangwl.framework.lock.constant.LockBeanName;
import cn.lingyangwl.framework.lock.model.ILock;
/**
* 分布式锁服务, 支持redis, zookeeper 以及 spring-integration-redis的分布式锁
*
* @see LockBeanName
* @author shenguangyang
*/
public interface ILockManager {
ILock getLock(String lockKey);
}