mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.*: Remove use of module() function, make all module functions local and return them in a table at the end
This commit is contained in:
parent
b49513cdeb
commit
eaa823a597
35 changed files with 435 additions and 302 deletions
|
@ -3,7 +3,7 @@ local gettime = require "socket".gettime;
|
|||
local setmetatable = setmetatable;
|
||||
local floor = math.floor;
|
||||
|
||||
module "throttle"
|
||||
local _ENV = nil;
|
||||
|
||||
local throttle = {};
|
||||
local throttle_mt = { __index = throttle };
|
||||
|
@ -39,8 +39,10 @@ function throttle:poll(cost, split)
|
|||
end
|
||||
end
|
||||
|
||||
function create(max, period)
|
||||
local function create(max, period)
|
||||
return setmetatable({ rate = max / period, max = max, t = 0, balance = max }, throttle_mt);
|
||||
end
|
||||
|
||||
return _M;
|
||||
return {
|
||||
create = create;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue