Created
May 12, 2022 15:57
-
-
Save arjunsk/ef37f7acbdf6caa54f4e6804a4f40a31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Creates a distributed lock implementation that provides | |
* exclusive access to a shared resource. | |
* <p> | |
* <pre> | |
* DistributedLock<byte[]> lock = ...; | |
* if (lock.tryLock()) { | |
* try { | |
* // manipulate protected state | |
* } finally { | |
* lock.unlock(); | |
* } | |
* } else { | |
* // perform alternative actions | |
* } | |
* </pre> | |
* <p> | |
* The algorithm relies on the assumption that while there is no | |
* synchronized clock across the processes, still the local time in | |
* every process flows approximately at the same rate, with an error | |
* which is small compared to the auto-release time of the lock. | |
* | |
* @param target key of the distributed lock that acquired. | |
* @param lease the lease time for the distributed lock to live. | |
* @param unit the time unit of the {@code expire} argument. | |
* @param watchdog if the watchdog is not null, it will auto keep | |
* lease of current lock, otherwise won't keep lease, | |
* this method dose not pay attention to the life cycle | |
* of watchdog, please maintain it yourself. | |
* @return a distributed lock instance. | |
*/ | |
DistributedLock<byte[]> getDistributedLock(final byte[] target, final long lease, final TimeUnit unit, | |
final ScheduledExecutorService watchdog); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment