mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.throttle: floor() internal balance calculation
This commit is contained in:
parent
1c1baa42c8
commit
88f2090c5b
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
|||
|
||||
local gettime = require "socket".gettime;
|
||||
local setmetatable = setmetatable;
|
||||
local floor = math.floor;
|
||||
|
||||
module "throttle"
|
||||
|
||||
|
@ -11,7 +12,7 @@ function throttle:update()
|
|||
local newt = gettime();
|
||||
local elapsed = newt - self.t;
|
||||
self.t = newt;
|
||||
local balance = self.rate * elapsed + self.balance;
|
||||
local balance = floor(self.rate * elapsed) + self.balance;
|
||||
if balance > self.max then
|
||||
self.balance = self.max;
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue