Mercurial > prosody-hg
view util/watchdog.lua @ 5853:3ee3d79db18c
muc.lib.lua: Fix Spark jabber client not displaying conference room lists, seemingly due to a missing value tag for the room description if the description has not been set
| author | Paul <paul@quakenet.org> |
|---|---|
| date | Sat, 05 Oct 2013 17:11:16 +0100 |
| parents | 189cfe565d03 |
| children | 5de6b93d0190 |
line wrap: on
line source
local timer = require "util.timer"; local setmetatable = setmetatable; local os_time = os.time; module "watchdog" local watchdog_methods = {}; local watchdog_mt = { __index = watchdog_methods }; function new(timeout, callback) local watchdog = setmetatable({ timeout = timeout, last_reset = os_time(), callback = callback }, watchdog_mt); timer.add_task(timeout+1, function (current_time) local last_reset = watchdog.last_reset; if not last_reset then return; end local time_left = (last_reset + timeout) - current_time; if time_left < 0 then return watchdog:callback(); end return time_left + 1; end); return watchdog; end function watchdog_methods:reset() self.last_reset = os_time(); end function watchdog_methods:cancel() self.last_reset = nil; end return _M;
