@InterfaceAudience.Private @InterfaceStability.Evolving public class TimeBasedLimiter extends Object implements QuotaLimiter
Modifier and Type | Method and Description |
---|---|
void |
addOperationSize(OperationQuota.OperationType type,
long size)
Add the average size of the specified operation type.
|
void |
checkQuota(long writeSize,
long readSize)
Checks if it is possible to execute the specified operation.
|
void |
consumeRead(long size)
Removes or add back some read amount to the quota.
|
void |
consumeWrite(long size)
Removes or add back some write amount to the quota.
|
long |
getAvgOperationSize(OperationQuota.OperationType type) |
long |
getReadAvailable() |
long |
getWriteAvailable() |
void |
grabQuota(long writeSize,
long readSize)
Removes the specified write and read amount from the quota.
|
boolean |
isBypass() |
String |
toString() |
void |
update(TimeBasedLimiter other) |
public void update(TimeBasedLimiter other)
public void checkQuota(long writeSize, long readSize) throws ThrottlingException
QuotaLimiter
checkQuota
in interface QuotaLimiter
writeSize
- the write size that will be checked against the available quotareadSize
- the read size that will be checked against the available quotaThrottlingException
- thrown if not enough avialable resources to perform operation.public void grabQuota(long writeSize, long readSize)
QuotaLimiter
grabQuota
in interface QuotaLimiter
writeSize
- the write size that will be removed from the current quotareadSize
- the read size that will be removed from the current quotapublic void consumeWrite(long size)
QuotaLimiter
consumeWrite
in interface QuotaLimiter
public void consumeRead(long size)
QuotaLimiter
consumeRead
in interface QuotaLimiter
public boolean isBypass()
isBypass
in interface QuotaLimiter
public long getWriteAvailable()
getWriteAvailable
in interface QuotaLimiter
public long getReadAvailable()
getReadAvailable
in interface QuotaLimiter
public void addOperationSize(OperationQuota.OperationType type, long size)
QuotaLimiter
addOperationSize
in interface QuotaLimiter
public long getAvgOperationSize(OperationQuota.OperationType type)
getAvgOperationSize
in interface QuotaLimiter