Class RedissonRateLimiter
- java.lang.Object
-
- org.redisson.RedissonObject
-
- org.redisson.RedissonRateLimiter
-
- All Implemented Interfaces:
RExpirable,RExpirableAsync,RObject,RObjectAsync,RRateLimiter,RRateLimiterAsync
public class RedissonRateLimiter extends RedissonObject implements RRateLimiter
- Author:
- Nikita Koksharov
-
-
Field Summary
-
Fields inherited from class org.redisson.RedissonObject
codec, commandExecutor, name
-
-
Constructor Summary
Constructors Constructor Description RedissonRateLimiter(CommandAsyncExecutor commandExecutor, String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidacquire()Acquires a permit from this RateLimiter, blocking until one is available.voidacquire(long permits)Acquires a specifiedpermitsfrom this RateLimiter, blocking until one is available.RFuture<Void>acquireAsync()Acquires a permit from this RateLimiter, blocking until one is available.RFuture<Void>acquireAsync(long permits)Acquires a specifiedpermitsfrom this RateLimiter, blocking until one is available.longavailablePermits()Returns amount of available permits.RFuture<Long>availablePermitsAsync()Returns amount of available permits.booleanclearExpire()Clear an expire timeout or expire date for object.RFuture<Boolean>clearExpireAsync()Clear an expire timeout or expire date for object in async mode.protected RFuture<Boolean>clearExpireAsync(String... keys)RFuture<Boolean>deleteAsync()Delete object in async modebooleanexpire(long timeToLive, TimeUnit timeUnit)Set a timeout for object.booleanexpire(Instant instant)Set an expire date for object.RFuture<Boolean>expireAsync(long timeToLive, TimeUnit timeUnit)Set a timeout for object in async mode.protected RFuture<Boolean>expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)RFuture<Boolean>expireAsync(Instant instant)Set an expire date for object.booleanexpireAt(long timestamp)UseRExpirable.expire(Instant)insteadbooleanexpireAt(Date timestamp)UseRExpirable.expire(Instant)insteadRFuture<Boolean>expireAtAsync(long timestamp)UseRExpirableAsync.expireAsync(Instant)insteadprotected RFuture<Boolean>expireAtAsync(long timestamp, String... keys)RFuture<Boolean>expireAtAsync(Date timestamp)UseRExpirableAsync.expireAsync(Instant)insteadRateLimiterConfiggetConfig()Returns current configuration of this RateLimiter object.RFuture<RateLimiterConfig>getConfigAsync()Returns current configuration of this RateLimiter object.longremainTimeToLive()Remaining time to live of Redisson object that has a timeoutRFuture<Long>remainTimeToLiveAsync()Remaining time to live of Redisson object that has a timeoutvoidsetRate(RateType type, long rate, long rateInterval, RateIntervalUnit unit)Updates RateLimiter's state and stores config to Redis server.RFuture<Void>setRateAsync(RateType type, long rate, long rateInterval, RateIntervalUnit unit)Updates RateLimiter's state and stores config to Redis server.booleantryAcquire()Acquires a permit only if one is available at the time of invocation.booleantryAcquire(long permits)Acquires the given number ofpermitsonly if all are available at the time of invocation.booleantryAcquire(long permits, long timeout, TimeUnit unit)Acquires the given number ofpermitsonly if all are available within the given waiting time.booleantryAcquire(long timeout, TimeUnit unit)Acquires a permit from this RateLimiter, if one becomes available within the given waiting time.RFuture<Boolean>tryAcquireAsync()Acquires a permit only if one is available at the time of invocation.RFuture<Boolean>tryAcquireAsync(long permits)Acquires the given number ofpermitsonly if all are available at the time of invocation.RFuture<Boolean>tryAcquireAsync(long permits, long timeout, TimeUnit unit)Acquires the given number ofpermitsonly if all are available within the given waiting time.RFuture<Boolean>tryAcquireAsync(long timeout, TimeUnit unit)Acquires a permit from this RateLimiter, if one becomes available within the given waiting time.booleantrySetRate(RateType type, long rate, long rateInterval, RateIntervalUnit unit)Initializes RateLimiter's state and stores config to Redis server.RFuture<Boolean>trySetRateAsync(RateType type, long rate, long rateInterval, RateIntervalUnit unit)Initializes RateLimiter's state and stores config to Redis server.-
Methods inherited from class org.redisson.RedissonObject
addListener, addListener, addListenerAsync, addListenerAsync, copy, copyAsync, delete, deleteAsync, dump, dumpAsync, encode, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getIdleTime, getIdleTimeAsync, getLockByMapKey, getLockByValue, getName, getRawName, getRawName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, removeListenersAsync, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, setName, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsync
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.redisson.api.RExpirable
clearExpire, expire, expire, expireAt, expireAt, remainTimeToLive
-
Methods inherited from interface org.redisson.api.RExpirableAsync
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, dumpAsync, getIdleTimeAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
-
-
-
-
Constructor Detail
-
RedissonRateLimiter
public RedissonRateLimiter(CommandAsyncExecutor commandExecutor, String name)
-
-
Method Detail
-
tryAcquire
public boolean tryAcquire()
Description copied from interface:RRateLimiterAcquires a permit only if one is available at the time of invocation.Acquires a permit, if one is available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then this method will return immediately with the value
false.- Specified by:
tryAcquirein interfaceRRateLimiter- Returns:
trueif a permit was acquired andfalseotherwise
-
tryAcquireAsync
public RFuture<Boolean> tryAcquireAsync()
Description copied from interface:RRateLimiterAsyncAcquires a permit only if one is available at the time of invocation.Acquires a permit, if one is available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then this method will return immediately with the value
false.- Specified by:
tryAcquireAsyncin interfaceRRateLimiterAsync- Returns:
trueif a permit was acquired andfalseotherwise
-
tryAcquire
public boolean tryAcquire(long permits)
Description copied from interface:RRateLimiterAcquires the given number ofpermitsonly if all are available at the time of invocation.Acquires a permits, if all are available and returns immediately, with the value
true, reducing the number of available permits by given number of permits.If no permits are available then this method will return immediately with the value
false.- Specified by:
tryAcquirein interfaceRRateLimiter- Parameters:
permits- the number of permits to acquire- Returns:
trueif a permit was acquired andfalseotherwise
-
tryAcquireAsync
public RFuture<Boolean> tryAcquireAsync(long permits)
Description copied from interface:RRateLimiterAsyncAcquires the given number ofpermitsonly if all are available at the time of invocation.Acquires a permits, if all are available and returns immediately, with the value
true, reducing the number of available permits by given number of permits.If no permits are available then this method will return immediately with the value
false.- Specified by:
tryAcquireAsyncin interfaceRRateLimiterAsync- Parameters:
permits- the number of permits to acquire- Returns:
trueif a permit was acquired andfalseotherwise
-
acquire
public void acquire()
Description copied from interface:RRateLimiterAcquires a permit from this RateLimiter, blocking until one is available.Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
- Specified by:
acquirein interfaceRRateLimiter
-
acquireAsync
public RFuture<Void> acquireAsync()
Description copied from interface:RRateLimiterAsyncAcquires a permit from this RateLimiter, blocking until one is available.Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
- Specified by:
acquireAsyncin interfaceRRateLimiterAsync- Returns:
- void
-
acquire
public void acquire(long permits)
Description copied from interface:RRateLimiterAcquires a specifiedpermitsfrom this RateLimiter, blocking until one is available.Acquires the given number of permits, if they are available and returns immediately, reducing the number of available permits by the given amount.
- Specified by:
acquirein interfaceRRateLimiter- Parameters:
permits- the number of permits to acquire
-
acquireAsync
public RFuture<Void> acquireAsync(long permits)
Description copied from interface:RRateLimiterAsyncAcquires a specifiedpermitsfrom this RateLimiter, blocking until one is available.Acquires the given number of permits, if they are available and returns immediately, reducing the number of available permits by the given amount.
- Specified by:
acquireAsyncin interfaceRRateLimiterAsync- Parameters:
permits- the number of permits to acquire- Returns:
- void
-
tryAcquire
public boolean tryAcquire(long timeout, TimeUnit unit)Description copied from interface:RRateLimiterAcquires a permit from this RateLimiter, if one becomes available within the given waiting time.Acquires a permit, if one is available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until specified waiting time elapses.
If a permit is acquired then the value
trueis returned.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
tryAcquirein interfaceRRateLimiter- Parameters:
timeout- the maximum time to wait for a permitunit- the time unit of thetimeoutargument- Returns:
trueif a permit was acquired andfalseif the waiting time elapsed before a permit was acquired
-
tryAcquireAsync
public RFuture<Boolean> tryAcquireAsync(long timeout, TimeUnit unit)
Description copied from interface:RRateLimiterAsyncAcquires a permit from this RateLimiter, if one becomes available within the given waiting time.Acquires a permit, if one is available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until specified waiting time elapses.
If a permit is acquired then the value
trueis returned.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
tryAcquireAsyncin interfaceRRateLimiterAsync- Parameters:
timeout- the maximum time to wait for a permitunit- the time unit of thetimeoutargument- Returns:
trueif a permit was acquired andfalseif the waiting time elapsed before a permit was acquired
-
tryAcquire
public boolean tryAcquire(long permits, long timeout, TimeUnit unit)Description copied from interface:RRateLimiterAcquires the given number ofpermitsonly if all are available within the given waiting time.Acquires the given number of permits, if all are available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until the specified waiting time elapses.
If a permits is acquired then the value
trueis returned.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
tryAcquirein interfaceRRateLimiter- Parameters:
permits- amounttimeout- the maximum time to wait for a permitunit- the time unit of thetimeoutargument- Returns:
trueif a permit was acquired andfalseif the waiting time elapsed before a permit was acquired
-
tryAcquireAsync
public RFuture<Boolean> tryAcquireAsync(long permits, long timeout, TimeUnit unit)
Description copied from interface:RRateLimiterAsyncAcquires the given number ofpermitsonly if all are available within the given waiting time.Acquires the given number of permits, if all are available and returns immediately, with the value
true, reducing the number of available permits by one.If no permit is available then the current thread becomes disabled for thread scheduling purposes and lies dormant until the specified waiting time elapses.
If a permits is acquired then the value
trueis returned.If the specified waiting time elapses then the value
falseis returned. If the time is less than or equal to zero, the method will not wait at all.- Specified by:
tryAcquireAsyncin interfaceRRateLimiterAsync- Parameters:
permits- amounttimeout- the maximum time to wait for a permitunit- the time unit of thetimeoutargument- Returns:
trueif a permit was acquired andfalseif the waiting time elapsed before a permit was acquired
-
trySetRate
public boolean trySetRate(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
Description copied from interface:RRateLimiterInitializes RateLimiter's state and stores config to Redis server.- Specified by:
trySetRatein interfaceRRateLimiter- Parameters:
type- - rate moderate- - raterateInterval- - rate time intervalunit- - rate time interval unit- Returns:
trueif rate was set andfalseotherwise
-
trySetRateAsync
public RFuture<Boolean> trySetRateAsync(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
Description copied from interface:RRateLimiterAsyncInitializes RateLimiter's state and stores config to Redis server.- Specified by:
trySetRateAsyncin interfaceRRateLimiterAsync- Parameters:
type- - rate moderate- - raterateInterval- - rate time intervalunit- - rate time interval unit- Returns:
trueif rate was set andfalseotherwise
-
setRate
public void setRate(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
Description copied from interface:RRateLimiterUpdates RateLimiter's state and stores config to Redis server.- Specified by:
setRatein interfaceRRateLimiter- Parameters:
type- - rate moderate- - raterateInterval- - rate time intervalunit- - rate time interval unit
-
setRateAsync
public RFuture<Void> setRateAsync(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
Description copied from interface:RRateLimiterAsyncUpdates RateLimiter's state and stores config to Redis server.- Specified by:
setRateAsyncin interfaceRRateLimiterAsync- Parameters:
type- - rate moderate- - raterateInterval- - rate time intervalunit- - rate time interval unit- Returns:
trueif rate was set andfalseotherwise
-
getConfig
public RateLimiterConfig getConfig()
Description copied from interface:RRateLimiterReturns current configuration of this RateLimiter object.- Specified by:
getConfigin interfaceRRateLimiter- Returns:
- config object
-
getConfigAsync
public RFuture<RateLimiterConfig> getConfigAsync()
Description copied from interface:RRateLimiterAsyncReturns current configuration of this RateLimiter object.- Specified by:
getConfigAsyncin interfaceRRateLimiterAsync- Returns:
- config object
-
availablePermits
public long availablePermits()
Description copied from interface:RRateLimiterReturns amount of available permits.- Specified by:
availablePermitsin interfaceRRateLimiter- Returns:
- number of permits
-
availablePermitsAsync
public RFuture<Long> availablePermitsAsync()
Description copied from interface:RRateLimiterAsyncReturns amount of available permits.- Specified by:
availablePermitsAsyncin interfaceRRateLimiterAsync- Returns:
- number of permits
-
expireAsync
public RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit)
Description copied from interface:RExpirableAsyncSet a timeout for object in async mode. After the timeout has expired, the key will automatically be deleted.- Specified by:
expireAsyncin interfaceRExpirableAsync- Parameters:
timeToLive- - timeout before object will be deletedtimeUnit- - timeout time unit- Returns:
trueif the timeout was set andfalseif not
-
clearExpireAsync
public RFuture<Boolean> clearExpireAsync()
Description copied from interface:RExpirableAsyncClear an expire timeout or expire date for object in async mode. Object will not be deleted.- Specified by:
clearExpireAsyncin interfaceRExpirableAsync- Returns:
trueif the timeout was cleared andfalseif not
-
deleteAsync
public RFuture<Boolean> deleteAsync()
Description copied from interface:RObjectAsyncDelete object in async mode- Specified by:
deleteAsyncin interfaceRObjectAsync- Overrides:
deleteAsyncin classRedissonObject- Returns:
trueif object was deletedfalseif not
-
expire
public boolean expire(long timeToLive, TimeUnit timeUnit)Description copied from interface:RExpirableSet a timeout for object. After the timeout has expired, the key will automatically be deleted.- Specified by:
expirein interfaceRExpirable- Parameters:
timeToLive- - timeout before object will be deletedtimeUnit- - timeout time unit- Returns:
trueif the timeout was set andfalseif not
-
expireAt
public boolean expireAt(long timestamp)
Description copied from interface:RExpirableUseRExpirable.expire(Instant)instead- Specified by:
expireAtin interfaceRExpirable- Parameters:
timestamp- - expire date in milliseconds (Unix timestamp)- Returns:
trueif the timeout was set andfalseif not
-
expireAtAsync
public RFuture<Boolean> expireAtAsync(long timestamp)
Description copied from interface:RExpirableAsyncUseRExpirableAsync.expireAsync(Instant)instead- Specified by:
expireAtAsyncin interfaceRExpirableAsync- Parameters:
timestamp- - expire date in milliseconds (Unix timestamp)- Returns:
trueif the timeout was set andfalseif not
-
expire
public boolean expire(Instant instant)
Description copied from interface:RExpirableSet an expire date for object. When expire date comes the key will automatically be deleted.- Specified by:
expirein interfaceRExpirable- Parameters:
instant- - expire date- Returns:
trueif the timeout was set andfalseif not
-
expireAsync
public RFuture<Boolean> expireAsync(Instant instant)
Description copied from interface:RExpirableAsyncSet an expire date for object. When expire date comes the key will automatically be deleted.- Specified by:
expireAsyncin interfaceRExpirableAsync- Parameters:
instant- - expire date- Returns:
trueif the timeout was set andfalseif not
-
expireAt
public boolean expireAt(Date timestamp)
Description copied from interface:RExpirableUseRExpirable.expire(Instant)instead- Specified by:
expireAtin interfaceRExpirable- Parameters:
timestamp- - expire date- Returns:
trueif the timeout was set andfalseif not
-
expireAtAsync
public RFuture<Boolean> expireAtAsync(Date timestamp)
Description copied from interface:RExpirableAsyncUseRExpirableAsync.expireAsync(Instant)instead- Specified by:
expireAtAsyncin interfaceRExpirableAsync- Parameters:
timestamp- - expire date- Returns:
trueif the timeout was set andfalseif not
-
clearExpire
public boolean clearExpire()
Description copied from interface:RExpirableClear an expire timeout or expire date for object.- Specified by:
clearExpirein interfaceRExpirable- Returns:
trueif timeout was removedfalseif object does not exist or does not have an associated timeout
-
remainTimeToLive
public long remainTimeToLive()
Description copied from interface:RExpirableRemaining time to live of Redisson object that has a timeout- Specified by:
remainTimeToLivein interfaceRExpirable- Returns:
- time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.
-
remainTimeToLiveAsync
public RFuture<Long> remainTimeToLiveAsync()
Description copied from interface:RExpirableAsyncRemaining time to live of Redisson object that has a timeout- Specified by:
remainTimeToLiveAsyncin interfaceRExpirableAsync- Returns:
- time in milliseconds -2 if the key does not exist. -1 if the key exists but has no associated expire.
-
expireAsync
protected RFuture<Boolean> expireAsync(long timeToLive, TimeUnit timeUnit, String... keys)
-
-