mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.async: Optionally allow too many 'done' callbacks
Sometimes, like in mod_c2s and mod_s2s during shutdown, all you want is to wait for the first done() and not complicate things.
This commit is contained in:
parent
1d20ec63e6
commit
ac06985604
1 changed files with 2 additions and 2 deletions
|
@ -73,7 +73,7 @@ local function runner_continue(thread)
|
|||
return true;
|
||||
end
|
||||
|
||||
local function waiter(num)
|
||||
local function waiter(num, allow_many)
|
||||
local thread = checkthread();
|
||||
num = num or 1;
|
||||
local waiting;
|
||||
|
@ -85,7 +85,7 @@ local function waiter(num)
|
|||
num = num - 1;
|
||||
if num == 0 and waiting then
|
||||
runner_continue(thread);
|
||||
elseif num < 0 then
|
||||
elseif not allow_many and num < 0 then
|
||||
error("done() called too many times");
|
||||
end
|
||||
end;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue