mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.timer: Defer to selected net.server if it implements this API
E.g. net.server_epoll is very close and could easily be adapted to support this.
This commit is contained in:
parent
67cf276ba2
commit
99b26ab45c
1 changed files with 5 additions and 0 deletions
|
@ -16,6 +16,11 @@ local tostring = tostring;
|
|||
local xpcall = require "util.xpcall".xpcall;
|
||||
local math_max = math.max;
|
||||
|
||||
if server.timer then
|
||||
-- The selected net.server implements this API, so defer to that
|
||||
return server.timer;
|
||||
end
|
||||
|
||||
local _ENV = nil;
|
||||
-- luacheck: std none
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue