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:
Kim Alvefur 2020-06-29 16:37:58 +02:00
parent 67cf276ba2
commit 99b26ab45c

View file

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