mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.timer: Move sleep() here from util.async
This is to solve a indirect dependency issue where net.server was initialized before the config was read
This commit is contained in:
parent
57f5ea520f
commit
2fa049d2e1
2 changed files with 8 additions and 8 deletions
|
@ -10,6 +10,7 @@ local indexedbheap = require "util.indexedbheap";
|
|||
local log = require "util.logger".init("timer");
|
||||
local server = require "net.server";
|
||||
local get_time = require "util.time".now
|
||||
local async = require "util.async";
|
||||
local type = type;
|
||||
local debug_traceback = debug.traceback;
|
||||
local tostring = tostring;
|
||||
|
@ -102,9 +103,16 @@ local function reschedule(id, delay)
|
|||
return id;
|
||||
end
|
||||
|
||||
local function sleep(s)
|
||||
local wait, done = async.waiter();
|
||||
add_task(s, done);
|
||||
wait();
|
||||
end
|
||||
|
||||
return {
|
||||
add_task = add_task;
|
||||
stop = stop;
|
||||
reschedule = reschedule;
|
||||
sleep = sleep;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue