RateLimiterUpdateLimits Method
Updates the limits associated with this rate limiter. Note, after this update, the tokens will be completely resupplied.
Namespace: Gemstone.ThreadingAssembly: Gemstone.Threading (in Gemstone.Threading.dll) Version: 1.0.128 -- Release Build+d4a9a653be1def5888b9be91bb1825c8655f3529
public void UpdateLimits(
double tokensPerSecond,
int maxTokensQueue
)
Public Sub UpdateLimits (
tokensPerSecond As Double,
maxTokensQueue As Integer
)
public:
void UpdateLimits(
double tokensPerSecond,
int maxTokensQueue
)
function UpdateLimits(tokensPerSecond, maxTokensQueue);
Parameters
- tokensPerSecond Double
- The number of tokens per second that can be generated. Must be greater than zero and less than 1 billion
- maxTokensQueue Int32
- The maximum number of tokens in the queue. Must be at least 1