Click or drag to resize

RateLimiterUpdateLimits Method

Updates the limits associated with this rate limiter. Note, after this update, the tokens will be completely resupplied.

Namespace: GSF.Threading
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.258-beta+f8b6aa3dbfe0b4cc2b0b0760dd5d2a3dd4f59d09
Syntax
public void UpdateLimits(
	double tokensPerSecond,
	int maxTokensQueue
)
View Source

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
See Also