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

com.aol.micro.server.dist.lock.DistributedLockManager Maven / Gradle / Ivy

There is a newer version: 0.91.11
Show newest version
package com.aol.micro.server.dist.lock;

import lombok.Getter;

public class DistributedLockManager {

    private final DistributedLockService distributedLockService;
    @Getter
    private final String key;

    public DistributedLockManager(DistributedLockService distributedLockService, String lockKey) {
        this.distributedLockService = distributedLockService;
        this.key = lockKey;
    }

    public boolean isMainProcess() {
        return distributedLockService.tryLock(key);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy