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:
Kim Alvefur 2015-02-21 10:36:37 +01:00
parent b49513cdeb
commit eaa823a597
35 changed files with 435 additions and 302 deletions

View file

@ -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;
};