public class RedissonRateLimiter extends RedissonObject implements RRateLimiter
codec, commandExecutor, name
Constructor and Description |
---|
RedissonRateLimiter(CommandAsyncExecutor commandExecutor,
String name) |
Modifier and Type | Method and Description |
---|---|
void |
acquire()
Acquires a permit from this RateLimiter, blocking until one is available.
|
void |
acquire(long permits)
Acquires a specified
permits from 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 specified
permits from this RateLimiter,
blocking until one is available. |
long |
availablePermits()
Returns amount of available permits.
|
RFuture<Long> |
availablePermitsAsync()
Returns amount of available permits.
|
RateLimiterConfig |
getConfig()
Returns current configuration of this RateLimiter object.
|
RFuture<RateLimiterConfig> |
getConfigAsync()
Returns current configuration of this RateLimiter object.
|
boolean |
tryAcquire()
Acquires a permit only if one is available at the
time of invocation.
|
boolean |
tryAcquire(long permits)
Acquires the given number of
permits only if all are available at the
time of invocation. |
boolean |
tryAcquire(long permits,
long timeout,
TimeUnit unit)
Acquires the given number of
permits only if all are available
within the given waiting time. |
boolean |
tryAcquire(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 of
permits only if all are available at the
time of invocation. |
RFuture<Boolean> |
tryAcquireAsync(long permits,
long timeout,
TimeUnit unit)
Acquires the given number of
permits only 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.
|
boolean |
trySetRate(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.
|
addListener, addListenerAsync, copy, copyAsync, delete, deleteAsync, dump, dumpAsync, encode, encode, encode, encodeMapKey, encodeMapKeys, encodeMapValue, encodeMapValues, get, getCodec, getLockByMapKey, getLockByValue, getName, getName, isExists, isExistsAsync, migrate, migrateAsync, move, moveAsync, prefixName, removeListener, removeListenerAsync, rename, renameAsync, renamenx, renamenxAsync, restore, restore, restoreAndReplace, restoreAndReplace, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemory, sizeInMemoryAsync, sizeInMemoryAsync, suffixName, toSeconds, toStream, touch, touchAsync, unlink, unlinkAsync
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
addListener, copy, delete, dump, getCodec, getName, isExists, migrate, move, removeListener, rename, renamenx, restore, restore, restoreAndReplace, restoreAndReplace, sizeInMemory, touch, unlink
addListenerAsync, copyAsync, deleteAsync, dumpAsync, isExistsAsync, migrateAsync, moveAsync, removeListenerAsync, renameAsync, renamenxAsync, restoreAndReplaceAsync, restoreAndReplaceAsync, restoreAsync, restoreAsync, sizeInMemoryAsync, touchAsync, unlinkAsync
public RedissonRateLimiter(CommandAsyncExecutor commandExecutor, String name)
public boolean tryAcquire()
RRateLimiter
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
.
tryAcquire
in interface RRateLimiter
true
if a permit was acquired and false
otherwisepublic RFuture<Boolean> tryAcquireAsync()
RRateLimiterAsync
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
.
tryAcquireAsync
in interface RRateLimiterAsync
true
if a permit was acquired and false
otherwisepublic boolean tryAcquire(long permits)
RRateLimiter
permits
only 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
.
tryAcquire
in interface RRateLimiter
permits
- the number of permits to acquiretrue
if a permit was acquired and false
otherwisepublic RFuture<Boolean> tryAcquireAsync(long permits)
RRateLimiterAsync
permits
only 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
.
tryAcquireAsync
in interface RRateLimiterAsync
permits
- the number of permits to acquiretrue
if a permit was acquired and false
otherwisepublic void acquire()
RRateLimiter
Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
acquire
in interface RRateLimiter
public RFuture<Void> acquireAsync()
RRateLimiterAsync
Acquires a permit, if one is available and returns immediately, reducing the number of available permits by one.
acquireAsync
in interface RRateLimiterAsync
public void acquire(long permits)
RRateLimiter
permits
from 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.
acquire
in interface RRateLimiter
permits
- the number of permits to acquirepublic RFuture<Void> acquireAsync(long permits)
RRateLimiterAsync
permits
from 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.
acquireAsync
in interface RRateLimiterAsync
permits
- the number of permits to acquirepublic boolean tryAcquire(long timeout, TimeUnit unit)
RRateLimiter
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 true
is returned.
If the specified waiting time elapses then the value false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
tryAcquire
in interface RRateLimiter
timeout
- the maximum time to wait for a permitunit
- the time unit of the timeout
argumenttrue
if a permit was acquired and false
if the waiting time elapsed before a permit was acquiredpublic RFuture<Boolean> tryAcquireAsync(long timeout, TimeUnit unit)
RRateLimiterAsync
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 true
is returned.
If the specified waiting time elapses then the value false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
tryAcquireAsync
in interface RRateLimiterAsync
timeout
- the maximum time to wait for a permitunit
- the time unit of the timeout
argumenttrue
if a permit was acquired and false
if the waiting time elapsed before a permit was acquiredpublic boolean tryAcquire(long permits, long timeout, TimeUnit unit)
RRateLimiter
permits
only 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 true
is returned.
If the specified waiting time elapses then the value false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
tryAcquire
in interface RRateLimiter
permits
- amounttimeout
- the maximum time to wait for a permitunit
- the time unit of the timeout
argumenttrue
if a permit was acquired and false
if the waiting time elapsed before a permit was acquiredpublic RFuture<Boolean> tryAcquireAsync(long permits, long timeout, TimeUnit unit)
RRateLimiterAsync
permits
only 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 true
is returned.
If the specified waiting time elapses then the value false
is returned. If the time is less than or equal to zero, the method
will not wait at all.
tryAcquireAsync
in interface RRateLimiterAsync
permits
- amounttimeout
- the maximum time to wait for a permitunit
- the time unit of the timeout
argumenttrue
if a permit was acquired and false
if the waiting time elapsed before a permit was acquiredpublic boolean trySetRate(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
RRateLimiter
trySetRate
in interface RRateLimiter
type
- - rate moderate
- - raterateInterval
- - rate time intervalunit
- - rate time interval unittrue
if rate was set and false
otherwisepublic RFuture<Boolean> trySetRateAsync(RateType type, long rate, long rateInterval, RateIntervalUnit unit)
RRateLimiterAsync
trySetRateAsync
in interface RRateLimiterAsync
type
- - rate moderate
- - raterateInterval
- - rate time intervalunit
- - rate time interval unittrue
if rate was set and false
otherwisepublic RateLimiterConfig getConfig()
RRateLimiter
getConfig
in interface RRateLimiter
public RFuture<RateLimiterConfig> getConfigAsync()
RRateLimiterAsync
getConfigAsync
in interface RRateLimiterAsync
public long availablePermits()
RRateLimiter
availablePermits
in interface RRateLimiter
public RFuture<Long> availablePermitsAsync()
RRateLimiterAsync
availablePermitsAsync
in interface RRateLimiterAsync
Copyright © 2014–2020 Redisson. All rights reserved.