mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.timer: Expire timer instance if another instance is already set to take care of the next scheduled event
This commit is contained in:
parent
dfe8a2fd7d
commit
13c5628054
1 changed files with 11 additions and 2 deletions
|
@ -43,8 +43,17 @@ local function _on_timer(now)
|
|||
params[_id] = _param;
|
||||
end
|
||||
end
|
||||
next_time = peek;
|
||||
if peek ~= nil then
|
||||
|
||||
if peek ~= nil and _active_timers > 1 and peek == next_time then
|
||||
-- Another instance of _on_timer already set next_time to the same value,
|
||||
-- so it should be safe to not renew this timer event
|
||||
peek = nil;
|
||||
else
|
||||
next_time = peek;
|
||||
end
|
||||
|
||||
if peek then
|
||||
-- peek is the time of the next event
|
||||
return peek - now;
|
||||
end
|
||||
_active_timers = _active_timers - 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue