Package org.redisson.api
Interface RPermitExpirableSemaphore
-
- All Superinterfaces:
RExpirable,RExpirableAsync,RObject,RObjectAsync,RPermitExpirableSemaphoreAsync
- All Known Implementing Classes:
RedissonPermitExpirableSemaphore
public interface RPermitExpirableSemaphore extends RExpirable, RPermitExpirableSemaphoreAsync
Semaphore object with lease time parameter support for each acquired permit.Each permit identified by own id and could be released only using its id. Permit id is a 128-bits unique random identifier generated each time during acquiring.
Works in non-fair mode. Therefore order of acquiring is unpredictable.
- Author:
- Nikita Koksharov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Stringacquire()Acquires a permit and returns its id.Stringacquire(long leaseTime, TimeUnit unit)Acquires a permit with definedleaseTimeand return its id.voidaddPermits(int permits)Increases or decreases the number of available permits by defined value.intavailablePermits()Returns amount of available permits.voidrelease(String permitId)Releases a permit by its id.StringtryAcquire()Tries to acquire currently available permit and return its id.StringtryAcquire(long waitTime, long leaseTime, TimeUnit unit)Tries to acquire currently available permit with definedleaseTimeand return its id.StringtryAcquire(long waitTime, TimeUnit unit)Tries to acquire currently available permit and return its id.booleantryRelease(String permitId)Tries to release permit by its id.booleantrySetPermits(int permits)Tries to set number of permits.booleanupdateLeaseTime(String permitId, long leaseTime, TimeUnit unit)Overrides and updates lease time for defined permit id.-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expireAt, expireAt, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
clearExpireAsync, expireAsync, expireAsync, expireAtAsync, expireAtAsync, remainTimeToLiveAsync
-
Methods inherited from interface org.redisson.api.RObject
addListener, copy, delete, dump, getCodec, getIdleTime, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
-
Methods inherited from interface org.redisson.api.RObjectAsync
addListenerAsync, copyAsync, deleteAsync, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
Methods inherited from interface org.redisson.api.RPermitExpirableSemaphoreAsync
acquireAsync, acquireAsync, addPermitsAsync, availablePermitsAsync, releaseAsync, tryAcquireAsync, tryAcquireAsync, tryAcquireAsync, tryReleaseAsync, trySetPermitsAsync, updateLeaseTimeAsync
-
-
-
-
Method Detail
-
acquire
String acquire() throws InterruptedException
Acquires a permit and returns its id. Waits if necessary until a permit became available.- Returns:
- permit id
- Throws:
InterruptedException- if the current thread is interrupted
-
acquire
String acquire(long leaseTime, TimeUnit unit) throws InterruptedException
Acquires a permit with definedleaseTimeand return its id. Waits if necessary until a permit became available.- Parameters:
leaseTime- permit lease timeunit- time unit- Returns:
- permit id
- Throws:
InterruptedException- if the current thread is interrupted
-
tryAcquire
String tryAcquire()
Tries to acquire currently available permit and return its id.- Returns:
- permit id if a permit was acquired and
nullotherwise
-
tryAcquire
String tryAcquire(long waitTime, TimeUnit unit) throws InterruptedException
Tries to acquire currently available permit and return its id. Waits up to definedwaitTimeif necessary until a permit became available.- Parameters:
waitTime- the maximum time to waitunit- the time unit- Returns:
- permit id if a permit was acquired and
nullif the waiting time elapsed before a permit was acquired - Throws:
InterruptedException- if the current thread is interrupted
-
tryAcquire
String tryAcquire(long waitTime, long leaseTime, TimeUnit unit) throws InterruptedException
Tries to acquire currently available permit with definedleaseTimeand return its id. Waits up to definedwaitTimeif necessary until a permit became available.- Parameters:
waitTime- the maximum time to waitleaseTime- permit lease time, use -1 to make it permanentunit- the time unit- Returns:
- permit id if a permit was acquired and
nullif the waiting time elapsed before a permit was acquired - Throws:
InterruptedException- if the current thread is interrupted
-
tryRelease
boolean tryRelease(String permitId)
Tries to release permit by its id.- Parameters:
permitId- permit id- Returns:
trueif a permit has been released andfalseotherwise
-
release
void release(String permitId)
Releases a permit by its id. Increases the number of available permits. Throws an exception if permit id doesn't exist or has already been released.- Parameters:
permitId- - permit id
-
availablePermits
int availablePermits()
Returns amount of available permits.- Returns:
- number of permits
-
trySetPermits
boolean trySetPermits(int permits)
Tries to set number of permits.- Parameters:
permits- - number of permits- Returns:
trueif permits has been set successfully, otherwisefalse.
-
addPermits
void addPermits(int permits)
Increases or decreases the number of available permits by defined value.- Parameters:
permits- amount of permits to add/remove
-
updateLeaseTime
boolean updateLeaseTime(String permitId, long leaseTime, TimeUnit unit)
Overrides and updates lease time for defined permit id.- Parameters:
permitId- permit idleaseTime- permit lease time, use -1 to make it permanentunit- the time unit- Returns:
trueif permits has been updated successfully, otherwisefalse.
-
-