Package org.redisson.api
Interface RFencedLockAsync
- All Superinterfaces:
RLockAsync
- All Known Subinterfaces:
RFencedLock
- All Known Implementing Classes:
RedissonFencedLock
Async interface for Redis based implementation of Fenced Lock with reentrancy support.
Each lock acquisition increases fencing token. It should be checked if it's greater or equal with the previous one by the service guarded by this lock and reject operation if condition is false.
- Author:
- Nikita Koksharov
-
Method Summary
Modifier and TypeMethodDescriptionReturns current fencing tokenAcquires the lock and returns increased fencing token.lockAndGetTokenAsync
(long leaseTime, TimeUnit unit) Acquires the lock with definedleaseTime
and returns increased fencing token.Tries to acquire the lock and returns increased fencing token if operation successful.tryLockAndGetTokenAsync
(long waitTime, long leaseTime, TimeUnit unit) Tries to acquire the lock with definedleaseTime
and returns increased fencing token.tryLockAndGetTokenAsync
(long waitTime, TimeUnit unit) Tries to acquire the lock and returns increased fencing token.Methods inherited from interface org.redisson.api.RLockAsync
forceUnlockAsync, getHoldCountAsync, isLockedAsync, lockAsync, lockAsync, lockAsync, lockAsync, remainTimeToLiveAsync, tryLockAsync, tryLockAsync, tryLockAsync, tryLockAsync, tryLockAsync, unlockAsync, unlockAsync
-
Method Details
-
getTokenAsync
Returns current fencing token- Returns:
- fencing token
-
lockAndGetTokenAsync
Acquires the lock and returns increased fencing token. Waits if necessary until lock became available.- Returns:
- fencing token
-
lockAndGetTokenAsync
Acquires the lock with definedleaseTime
and returns increased fencing token. Waits if necessary until lock became available.Lock will be released automatically after defined
leaseTime
interval.- Parameters:
leaseTime
- the maximum time to hold the lock after it's acquisition, if it hasn't already been released by invokingunlock
. If leaseTime is -1, hold the lock until explicitly unlocked.unit
- the time unit- Returns:
- fencing token
-
tryLockAndGetTokenAsync
Tries to acquire the lock and returns increased fencing token if operation successful.- Returns:
- fencing token if lock acquired otherwise
null
-
tryLockAndGetTokenAsync
Tries to acquire the lock and returns increased fencing token. Waits up to definedwaitTime
if necessary until the lock became available.- Parameters:
waitTime
- the maximum time to acquire the lockunit
- time unit- Returns:
- fencing token if lock is successfully acquired,
otherwise
null
if lock is already set.
-
tryLockAndGetTokenAsync
Tries to acquire the lock with definedleaseTime
and returns increased fencing token. Waits up to definedwaitTime
if necessary until the lock became available.Lock will be released automatically after defined
leaseTime
interval.- Parameters:
waitTime
- the maximum time to acquire the lockleaseTime
- lease timeunit
- time unit- Returns:
- fencing token if lock is successfully acquired,
otherwise
null
if lock is already set.
-