Class TokenBucket
java.lang.Object
software.amazon.awssdk.retries.internal.circuitbreaker.TokenBucket
A lock-free implementation of a token bucket. Tokens can be acquired from the bucket as long as there is sufficient capacity in
the bucket.
-
Method Summary
Modifier and TypeMethodDescriptionint
Retrieve a snapshot of the current number of tokens in the bucket.int
Retrieve the maximum capacity of the bucket configured when the bucket was created.release
(int amountToRelease) Release a certain number of tokens back to this bucket.toString()
tryAcquire
(int amountToAcquire) Try to acquire a certain number of tokens from this bucket.
-
Method Details
-
tryAcquire
Try to acquire a certain number of tokens from this bucket. If there aren't sufficient tokens in this bucket thenAcquireResponse.acquisitionFailed()
returnstrue
. -
release
Release a certain number of tokens back to this bucket. If this number of tokens would exceed the maximum number of tokens configured for the bucket, the bucket is instead set to the maximum value and the additional tokens are discarded. -
currentCapacity
public int currentCapacity()Retrieve a snapshot of the current number of tokens in the bucket. Because this number is constantly changing, it's recommended to refer to theAcquireResponse.capacityRemaining()
returned by thetryAcquire(int)
method whenever possible. -
maxCapacity
public int maxCapacity()Retrieve the maximum capacity of the bucket configured when the bucket was created. -
toString
-