mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
util.async: Make parameters to async.runner() optional
This commit is contained in:
parent
faea440e51
commit
8a38579fa0
2 changed files with 27 additions and 3 deletions
|
@ -130,10 +130,14 @@ local function runner_create_thread(func, self)
|
|||
return thread;
|
||||
end
|
||||
|
||||
local empty_watchers = {};
|
||||
local function default_error_watcher(runner, err)
|
||||
runner:log("error", "Encountered error: %s", err);
|
||||
error(err);
|
||||
end
|
||||
local function default_func(f) f(); end
|
||||
local function runner(func, watchers, data)
|
||||
return setmetatable({ func = func, thread = false, state = "ready", notified_state = "ready",
|
||||
queue = {}, watchers = watchers or empty_watchers, data = data, id = new_id() }
|
||||
return setmetatable({ func = func or default_func, thread = false, state = "ready", notified_state = "ready",
|
||||
queue = {}, watchers = watchers or { error = default_error_watcher }, data = data, id = new_id() }
|
||||
, runner_mt);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue